Skip to content

Instantly share code, notes, and snippets.

@dorayakikun
Last active March 9, 2019 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dorayakikun/5fd11eb860bc816bfd53153b579a933e to your computer and use it in GitHub Desktop.
Save dorayakikun/5fd11eb860bc816bfd53153b579a933e to your computer and use it in GitHub Desktop.
Azure Pipelines使ってみた_dependencies
jobs:
- job: A
steps:
- script: "echo A"
- job: B
dependsOn:
- A
steps:
- script: "echo B"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment