From 6d5f2ba78d85f24e69eee5c7c3948171b9fc3b05 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Sun, 12 Dec 2021 16:57:57 +0100 Subject: [PATCH] macOS 10.14 runners are no longer available via Azure Pipeline These images have already been deprecated for two months[1]. Thus, we upgrade to macOS 10.15. Since clang 12 is picky about `int-in-bool-context` warning, we disable `-Werror`. [1] --- azure/macos/job.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure/macos/job.yml b/azure/macos/job.yml index 4b979d41a86..a27a16fb336 100644 --- a/azure/macos/job.yml +++ b/azure/macos/job.yml @@ -5,7 +5,7 @@ parameters: jobs: - job: ${{ parameters.configurationName }} pool: - vmImage: 'macOS-10.14' + vmImage: 'macOS-10.15' steps: - template: brew.yml - script: | @@ -66,7 +66,6 @@ jobs: --enable-intl \ --with-mhash \ --with-sodium \ - --enable-werror \ --with-config-file-path=/etc \ --with-config-file-scan-dir=/etc/php.d displayName: 'Configure Build'