Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
fix(ci): turn on memcached in travis and circle
Browse files Browse the repository at this point in the history
Fixes #2681.
  • Loading branch information
philbooth committed Oct 25, 2018
1 parent d884148 commit eb86a37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Expand Up @@ -31,6 +31,10 @@ jobs:
name: Build deployment container image
command: docker build -f Dockerfile-build -t fxa-auth-server:build .

- run:
name: Start memcached
command: docker pull memcached && docker run -d --name memcached -p 11211:11211 memcached

- run:
name: Start redis
command: docker pull redis && docker run -d --name redis-server -p 6379:6379 redis
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -7,6 +7,7 @@ dist: trusty
sudo: true

services:
- memcached
- redis-server

addons:
Expand Down

0 comments on commit eb86a37

Please sign in to comment.