Last active
January 6, 2020 16:30
-
-
Save jchauncey/e39ddf42661e7c970e7027a962f76de1 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
stages: | |
- stage: build_and_push | |
jobs: | |
- job: build_component_a | |
steps: | |
... | |
- job: build_component_b | |
steps: | |
... | |
- job: build_component_c | |
dependsOn: | |
- build_component_a | |
- build_component_b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment