Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
moving memcached inside the image
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Orcutt committed Apr 10, 2018
1 parent 46c808e commit 4e0fb94
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,15 @@ apt-get update -y
# install modules we need to use to test with.
apt-get install -y wget curl git make time

# install mysql-server
export DEBIAN_FRONTEND=noninteractive

# stand up a memcached on the image
apt-get install -y memcached
/etc/init.d/memcached start

# install mysql-server
apt-get install -y mysql-server
/etc/init.d/mysql start

# load up our test database
mysql < /var/source/tests/sql/mysql/create_test_database.sql
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: generic
services:
- docker
- postgresql
- memcached
env:
- HHVM_VERSION=3.18-lts-latest
- HHVM_VERSION=latest
Expand Down

0 comments on commit 4e0fb94

Please sign in to comment.