From e949de48dd948ce7bb5c8a23a3652afbab376eb6 Mon Sep 17 00:00:00 2001 From: eyalz800 Date: Wed, 6 Dec 2023 15:03:04 +0200 Subject: [PATCH] Update azure pipelines script. --- .azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index e8195bd..4961154 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -21,7 +21,7 @@ strategy: VM_IMAGE: 'macOS-11' OPERATING_SYSTEM: 'mac-os' COMPILER: 'clang' - CLANG_VERSION: '13' + CLANG_VERSION: '17' ASAN_OPTIONS: 'alloc_dealloc_mismatch=0' TEST_AUTODETECT: 1 @@ -45,7 +45,7 @@ steps: condition: and(eq(variables['OPERATING_SYSTEM'], 'linux'), eq(variables['COMPILER'], 'gcc')) - script: | - brew install llvm@$(CLANG_VERSION) make + brew install --force-bottle llvm@$(CLANG_VERSION) make displayName: 'install (mac)' condition: eq(variables['OPERATING_SYSTEM'], 'mac-os')