diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-05-07 12:32:42 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-07 20:38:18 +0200 |
commit | d0e002d122f3c88dc20879695ba0e4402fbe5562 (patch) | |
tree | 13060f77c334536aee8bb754015abfcdd5123c2d /Meta | |
parent | d24ec130bfb4a4e3c83174b65aa0e31e612430cc (diff) | |
download | serenity-d0e002d122f3c88dc20879695ba0e4402fbe5562.zip |
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
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Azure/nightly-pipeline.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Meta/Azure/nightly-pipeline.yml b/Meta/Azure/nightly-pipeline.yml index a3c6bc4877..7974193136 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' |