Skip to content

Instantly share code, notes, and snippets.

@jchauncey
Last active January 6, 2020 16:30

Revisions

  1. Jonathan Chauncey revised this gist Jan 6, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    stages:
    - stage: build
    - stage: build_and_push
    jobs:
    - job: build_component_a
    steps:
  2. Jonathan Chauncey created this gist Jan 6, 2020.
    13 changes: 13 additions & 0 deletions gistfile1.txt
    Original 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