From bee154de87d387b27a5f3890ee309184b0007efa Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 28 Feb 2017 13:11:27 -0500 Subject: [PATCH] Test setup cleanup --- .gitlab-ci.yml | 7 ------- build/docker_install.sh | 11 ----------- 2 files changed, 18 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index de3e369..db11eb3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,3 @@ -# Composer stores all downloaded packages in the vendor/ directory. -# Do not use the following if the vendor/ directory is commited to -# your git repository. -cache: - paths: - - vendor/ - test:7: before_script: - sh build/docker_install.sh > /dev/null diff --git a/build/docker_install.sh b/build/docker_install.sh index 2c595f1..7a5ca25 100644 --- a/build/docker_install.sh +++ b/build/docker_install.sh @@ -10,14 +10,3 @@ echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelin apk upgrade --update && apk add --no-cache \ curl \ git - -# Install phpunit, the tool that we will use for testing -# curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar -# chmod +x /usr/local/bin/phpunit - -# Install extensions -# Install xdebug for coverage report -# docker-php-source extract -# pecl install xdebug -# docker-php-ext-enable xdebug -# docker-php-source delete