From 1081de90610045fe1ac23f8cca68e8fb21a0198d Mon Sep 17 00:00:00 2001 From: Andreas Pardeike Date: Fri, 2 Feb 2024 08:37:26 +0100 Subject: [PATCH] Ignore mono checksum bc it can fail in Azure somehow --- azure-pipelines-job-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-job-template.yml b/azure-pipelines-job-template.yml index 61cee710..eef11b44 100644 --- a/azure-pipelines-job-template.yml +++ b/azure-pipelines-job-template.yml @@ -79,7 +79,7 @@ jobs: # For some reason, if mono is installed, above solution restore/build fails when restoring nugets (doesn't fail when only building a project). # Since mono is only needed for running tests in 'mono' runtimeType mode, only install mono after the restore/build. - ${{ if eq(parameters.runtimeType, 'mono') }}: - - bash: "choco install mono --yes --no-progress --${{parameters.architecture}}" + - bash: "choco install mono --yes --no-progress --${{parameters.architecture}} --ignore-checksums" displayName: 'Install Mono' # 'dotnet' runtimeType means using `dotnet test`.