diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..96fe18c --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,15 @@ +trigger: none + +pool: + vmImage: ubuntu-latest + + +stages: +- stage: stage1 + displayName: My first stage + jobs: + - job: job1 + displayName: My first job + steps: + - script: echo "Hello world" + displayName: my first pipeline