From 87b2a6004fa3ac3ce59f9973056d8183b1468889 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 14 Aug 2021 22:43:34 +0100 Subject: [PATCH] CI: Add a hello world step to azure-pipelines.yml so it stops failing --- azure-pipelines.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 76a6387ebe..f7fe46c2b0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,4 +4,6 @@ trigger: pool: vmImage: ubuntu-latest -stages: [] +steps: + - script: echo Hello, world! + displayName: 'Hello world'