Skip to content
Snippets Groups Projects
Commit 3138d8d8 authored by Ray Andrew's avatar Ray Andrew
Browse files

Initial commit

parent 1c7b0504
No related merge requests found
Pipeline #5042 passed with stages
in 8 minutes and 9 seconds
...@@ -5,6 +5,7 @@ services: ...@@ -5,6 +5,7 @@ services:
stages: stages:
- test - test
- deploy
cache: cache:
paths: paths:
...@@ -31,7 +32,7 @@ before_script: ...@@ -31,7 +32,7 @@ before_script:
- docker-php-ext-enable xdebug - docker-php-ext-enable xdebug
- docker-php-ext-configure intl - docker-php-ext-configure intl
- docker-php-ext-install json intl mysqli - docker-php-ext-install json intl mysqli
- docker-php-ext-enable json intl mysqli debug - docker-php-ext-enable json intl mysqli xdebug
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer
- http_proxy=${HTTP_PROXY} composer global require hirak/prestissimo - http_proxy=${HTTP_PROXY} composer global require hirak/prestissimo
...@@ -45,3 +46,16 @@ test: ...@@ -45,3 +46,16 @@ test:
artifacts: artifacts:
paths: paths:
- report/ - report/
pages:
stage: deploy
dependencies:
- test
script:
- mv report public
artifacts:
paths:
- public
expire_in: 30days
only:
- master
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment