Skip to content

Commit

Permalink
fixed project names
Browse files Browse the repository at this point in the history
  • Loading branch information
schmunk42 committed Jan 18, 2017
1 parent f53b823 commit 2913644
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ test:db:mssql:
stage: test
script:
- export COMPOSE_PROJECT_NAME=buildpipeline${CI_PIPELINE_ID}mssql
- docker-compose -f docker-compose.cubrid.yml up --build -d
- docker-compose up --build -d
# TODO: retry/wait for db
- sleep 10
- docker-compose -f docker-compose.mssql.yml run --rm php vendor/bin/phpunit -v --group mssql
- docker-compose run --rm php vendor/bin/phpunit -v --group mssql

test:db:cubrid:
stage: test
script:
- export COMPOSE_PROJECT_NAME=buildpipeline${CI_PIPELINE_ID}cubrid
- docker-compose -f docker-compose.cubrid.yml up --build -d
- docker-compose up --build -d
# TODO: retry/wait for db
- sleep 10
- docker-compose -f docker-compose.cubrid.yml run --rm php /project/vendor/bin/phpunit -v --group cubrid
- docker-compose run --rm php /project/vendor/bin/phpunit -v --group cubrid

0 comments on commit 2913644

Please sign in to comment.