Last active
May 21, 2020 03:16
-
-
Save jayco/d6c5c7065a6ab4e06e2e697b8f0af22a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
- command: "true" | |
concurrency_group: "gate" | |
concurrency: 1 | |
key: "gate" | |
- wait | |
- label: "build" | |
command: > | |
sleep 10 | |
key: "build" | |
- label: "test" | |
command: > | |
sleep 10 | |
depends_on: "build" | |
key: "test" | |
- wait | |
- command: "true" | |
concurrency_group: "gate" | |
- label: "deploy" | |
command: echo "scripts/deploy.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment