Merge branch 'change-ci-image' into 'develop'

Use own framasoft/framadate-ci image for CI

See merge request framasoft/framadate!240
This commit is contained in:
Thomas Citharel 2018-03-19 13:36:40 +01:00
commit 6c2e44e400

View File

@ -1,20 +1,14 @@
image: php image: framasoft/framadate-ci
stages: stages:
- test - test
- deploy - deploy
- funky - funky
# install zip, git, composer on each build
before_script:
- apt-get update -yqq
- apt-get install zip unzip git -yqq
# Run php-cs-fixer and phpunit on all branches # Run php-cs-fixer and phpunit on all branches
test: test:
stage: test stage: test
script: script:
- curl --silent --show-error https://getcomposer.org/installer | php - composer install -o --no-interaction --no-progress --prefer-dist
- php composer.phar install -o --no-interaction --no-progress --prefer-dist
- mkdir tpl_c - mkdir tpl_c
- php vendor/bin/php-cs-fixer fix --verbose --dry-run - php vendor/bin/php-cs-fixer fix --verbose --dry-run
- vendor/bin/phpunit --bootstrap app/tests/bootstrap.php --debug app/tests - vendor/bin/phpunit --bootstrap app/tests/bootstrap.php --debug app/tests
@ -28,10 +22,8 @@ pages:
script: script:
- latesttag=$(git describe --tags) - latesttag=$(git describe --tags)
- git checkout ${latesttag} - git checkout ${latesttag}
- curl --silent --show-error https://getcomposer.org/installer | php - composer install -o --no-interaction --no-progress --prefer-dist --no-dev
- php composer.phar install -o --no-interaction --no-progress --prefer-dist --no-dev - composer dump-autoload --optimize --no-dev --classmap-authoritative
- php composer.phar dump-autoload --optimize --no-dev --classmap-authoritative
- rm -rf composer.phar
- mkdir tpl_c - mkdir tpl_c
- mkdir framadate - mkdir framadate
- mv `ls -A | grep -v framadate` ./framadate - mv `ls -A | grep -v framadate` ./framadate
@ -50,8 +42,7 @@ funky:
stage: funky stage: funky
script: script:
- git checkout funky - git checkout funky
- curl --silent --show-error https://getcomposer.org/installer | php - composer install
- php composer.phar install
- mkdir tpl_c - mkdir tpl_c
- mkdir .public - mkdir .public
- cp -r * .public - cp -r * .public