Skip to content

Instantly share code, notes, and snippets.

@Nklya
Created February 17, 2018 08:18
Show Gist options
  • Save Nklya/ab352648c32492e6e9b32440a79a5113 to your computer and use it in GitHub Desktop.
Save Nklya/ab352648c32492e6e9b32440a79a5113 to your computer and use it in GitHub Desktop.
hw19
stages:
- build
- test
- deploy
build_job:
stage: build
script:
- echo 'Building'
test_unit_job:
stage: test
script:
- echo 'Testing 1'
test_integration_job:
stage: test
script:
- echo 'Testing 2'
deploy_job:
stage: deploy
script:
- echo 'Deploy'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment