mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-10 21:26:35 +01:00
25 lines
376 B
YAML
Executable File
25 lines
376 B
YAML
Executable File
stages:
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- echo "Building the app this does nothing."
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- echo "Testing the app."
|
|
- /home/xevidos/scripts/sonar-codiad.sh
|
|
only:
|
|
- development
|
|
|
|
deploy_staging:
|
|
stage: deploy
|
|
script:
|
|
- echo "Deploy to staging server this does nothing."
|
|
only:
|
|
- master
|