diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-01-14 09:37:34 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-14 22:39:06 +0100 |
commit | 6a4c1e4b7b4308221e3bc8f20f4dc519f21e13fc (patch) | |
tree | cfcb36d10a50396ae7f29889aa90a486dc9a754f | |
parent | 643992904cf611bc2ff96c46c59e6ce7896cbcaf (diff) | |
download | serenity-6a4c1e4b7b4308221e3bc8f20f4dc519f21e13fc.zip |
CI: Disallow test failures on macOS Lagom :^)
-rw-r--r-- | Meta/Azure/Lagom.yml | 3 | ||||
-rw-r--r-- | azure-pipelines.yml | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/Meta/Azure/Lagom.yml b/Meta/Azure/Lagom.yml index 475ea22714..54bab01ec9 100644 --- a/Meta/Azure/Lagom.yml +++ b/Meta/Azure/Lagom.yml @@ -2,7 +2,6 @@ parameters: os: 'Linux' fuzzer: 'NoFuzz' lagom_lints: false - allow_test_failures: false jobs: - job: 'Lagom_${{ parameters.os }}_${{ parameters.fuzzer }}' @@ -92,7 +91,7 @@ jobs: - ${{ if eq(parameters.fuzzer, 'NoFuzz') }}: - script: | - ninja test || ${{ parameters.allow_test_failures }} + ninja test displayName: 'Test' workingDirectory: $(Build.SourcesDirectory)/Meta/Lagom/Build env: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f82f5df97d..6c7cd546c2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,8 +22,6 @@ stages: - template: Meta/Azure/Lagom.yml parameters: os: 'macOS' - allow_test_failures: true - - stage: Toolchain dependsOn: [] |