diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2020-01-05 19:24:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-05 19:24:24 +0100 |
| commit | 2ca7200a0526e5374f0b0e10d6f5d22965bacaa5 (patch) | |
| tree | 242cc1e679a708c9d21b114268f03620224216cc | |
| parent | d59912450819f6b9e8cb5b2e8eeb70c4d9de1465 (diff) | |
Updated for v0.0.5 of the compat checker.
| -rw-r--r-- | .ci/azure-pipelines.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index fef2ecda9..ba9989e70 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -311,8 +311,9 @@ jobs: destinationFolder: $(System.ArtifactsDirectory)/tools cleanDestinationFolder: true + # The `--warnings-only` switch will swallow the return code and not emit any errors. - task: CmdLine@2 displayName: 'Execute ABI Compatibility Check Tool' inputs: - script: 'dotnet tools/CompatibilityCheckerCoreCLI.dll current-release/$(AssemblyFileName) new-release/$(AssemblyFileName) --azure-pipelines' + script: 'dotnet tools/CompatibilityCheckerCLI.dll current-release/$(AssemblyFileName) new-release/$(AssemblyFileName) --azure-pipelines --warnings-only' workingDirectory: $(System.ArtifactsDirectory) # Optional |
