25 lines
515 B
YAML
25 lines
515 B
YAML
image: docker:20.10.22
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
- production
|
|
|
|
##############
|
|
# TEST STAGE #
|
|
##############
|
|
|
|
# Dev test
|
|
test-api-dev:
|
|
stage: test
|
|
image: docker/compose:latest
|
|
variables:
|
|
DOCKER_TLS_CERTDIR: ""
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci up -d
|
|
rules:
|
|
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
when: always
|