From 85927e250c630601e43e5fb30658380f5975f611 Mon Sep 17 00:00:00 2001 From: Krzysztof Dyszczyk <krzysiek@inspirelabs.pl> Date: Sat, 17 Mar 2018 16:16:01 +0100 Subject: [PATCH] Use composer from docker --- .gitlab-ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 94dce66..a6c9815 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,8 +14,6 @@ cache: untracked: true paths: - vendor - - composer.phar - - wp-cli.phar stages: - build @@ -32,9 +30,8 @@ build php: paths: - vendor/ script: - - wget -nc https://getcomposer.org/download/1.6.3/composer.phar - - wget -nc https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar - - php composer.phar install --no-progress + - ls /usr/local/bin + - composer install --no-progress #build js: # image: node:slim @@ -56,8 +53,6 @@ code style test: - ls -l - php --version - php composer.phar phpcs - except: - - devel-deploy unit test 0: image: wpdesknet/phpunit-woocommerce:0-0 -- GitLab