From 4c12477f79dd63568fedd5a50f1dc859501cffc5 Mon Sep 17 00:00:00 2001 From: Hamid Asadi <94477661+HamiedAsadi@users.noreply.github.com> Date: Tue, 21 Mar 2023 12:40:00 -0400 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0f3708009..ba3e5a080 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,16 +1,15 @@ -# Starter pipeline - - -trigger: -- DebugPME +trigger: none pool: vmImage: ubuntu-latest -steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' -- script: | - echo Add other tasks to build, test, and deploy your project. - displayName: 'Run a multi-line script' \ No newline at end of file +stages: +- stage: stage1 + displayName: My first stage + jobs: + - job: job1 + displayName: My first job + steps: + - script: echo "Hello world" + displayName: my first pipeline \ No newline at end of file