Slide 15
Slide 15 text
stages:
- test
- build
- deploy
test-app:
stage: test
script:
- ./.ci-scripts/test.sh
- echo “任意のスクリプトが呼べ
る”
only:
- pushes
build-app:
stage: build
script:
- ./.ci-scripts/build.sh
when: on_success
deploy-app:
stage: deploy
script:
- ./.ci-scripts/deploy.sh
when: manual
.gitlab-ci.yaml