Last active
January 6, 2020 16:30
Revisions
-
Jonathan Chauncey revised this gist
Jan 6, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ stages: - stage: build_and_push jobs: - job: build_component_a steps: -
Jonathan Chauncey created this gist
Jan 6, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ stages: - stage: build jobs: - job: build_component_a steps: ... - job: build_component_b steps: ... - job: build_component_c dependsOn: - build_component_a - build_component_b