From d0e002d122f3c88dc20879695ba0e4402fbe5562 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sat, 7 May 2022 12:32:42 -0600 Subject: [PATCH] CI: Use proper paths to template files in nightly-pipeline.yml Azure paths are relative to the pipeline file. Addtionally, pipeline stages can't have spaces or parentheses in them --- Meta/Azure/nightly-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Meta/Azure/nightly-pipeline.yml b/Meta/Azure/nightly-pipeline.yml index a3c6bc48771..79741931361 100644 --- a/Meta/Azure/nightly-pipeline.yml +++ b/Meta/Azure/nightly-pipeline.yml @@ -10,12 +10,12 @@ stages: - stage: Toolchain dependsOn: [] jobs: - - template: Meta/Azure/Toolchain.yml + - template: Toolchain.yml - - stage: SerenityOS (Coverage) + - stage: SerenityOS_Coverage dependsOn: Toolchain jobs: - - template: Meta/Azure/Serenity.yml + - template: Serenity.yml parameters: arch: 'x86_64' coverage: 'ON'