25 lines
448 B
YAML
25 lines
448 B
YAML
stages:
|
|
- .pre
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
PUBLISH_DIR: BackendPublish
|
|
|
|
top-level-job:
|
|
stage: .pre
|
|
image: alpine:latest
|
|
script:
|
|
- echo "Starting pipeline"
|
|
|
|
include:
|
|
- local: '/SurveyBackend/backend.gitlab-ci.yml'
|
|
rules:
|
|
- changes:
|
|
- 'SurveyBackend/*'
|
|
- local: '/SurveyFrontend/frontend.gitlab-ci.yml'
|
|
rules:
|
|
- changes:
|
|
- 'SurveyFrontend/*'
|