From 8724fec74f9e428394e81d44126a90e83a595995 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Mon, 28 Oct 2024 13:26:42 +0100 Subject: [PATCH] ci(azure-pipelines): create initial azure-pipelines.yml --- azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..75a8f78c8 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,14 @@ +pool: 'Prod Private Agent Pool' + +jobs: +- job: Hello-World + container: + image: 'devfra.azurecr.io/de.fraport.trusted/ubuntu:22.04' + endpoint: devfra + steps: + - displayName: 'Run a one-line script' + script: echo Hello, world! + - displayName: 'Run a multi-line script' + script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml \ No newline at end of file