diff --git a/01-first-learn-devops-azure-pipelines.yml b/01-first-learn-devops-azure-pipelines.yml new file mode 100644 index 00000000..3b947dc9 --- /dev/null +++ b/01-first-learn-devops-azure-pipelines.yml @@ -0,0 +1,33 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +# Pipelines > Stages > Jobs > Tasks(Steps) + +jobs: +- job: Job1 + steps: + - script: echo Hello, world! + displayName: 'Run a one-line script' + + - script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' +- job: Job2 + dependsOn: Job1 + steps: + - script: echo Job2! + displayName: 'Run a one-line script' +- job: Job3 + dependsOn: Job2 + steps: + - script: echo Job3! + displayName: 'Run a one-line script' \ No newline at end of file