From fb8baf247ab2e43d5f6d58d40e541761a6084846 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 28 Feb 2017 09:30:04 -0500 Subject: [PATCH] Stop trying to run bash, which isn't in the alpine docker images --- .gitlab-ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4679e13..db52a9f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,12 +5,9 @@ cache: paths: - vendor/ -services: - - redis:latest - test:7: before_script: - - bash build/docker_install.sh > /dev/null + - sh build/docker_install.sh > /dev/null - curl -sS https://getcomposer.org/installer | php - php composer.phar update - php composer.phar install @@ -20,7 +17,7 @@ test:7: test:7.1: before_script: - - bash build/docker_install.sh > /dev/null + - sh build/docker_install.sh > /dev/null - curl -sS https://getcomposer.org/installer | php - php composer.phar update - php composer.phar install