aboutsummaryrefslogtreecommitdiff
path: root/.github/azure-workflows
diff options
context:
space:
mode:
authorNadia Holmquist Pedersen <nadia@nhp.sh>2021-12-28 15:20:50 +0100
committerNadia Holmquist Pedersen <nadia@nhp.sh>2021-12-28 15:20:50 +0100
commit08a19d930c9ca8f4fca498625ea0deb03f75e866 (patch)
tree32ade3077bae0d1e0894cf61a8e845b9d7620d7f /.github/azure-workflows
parentf39eeeb9dd7dff0d85eace8505d16500df3f063c (diff)
CI: macOS 10.14 is no longer supported, use 10.15
Diffstat (limited to '.github/azure-workflows')
-rw-r--r--.github/azure-workflows/build-mac-x86_64.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/azure-workflows/build-mac-x86_64.yml b/.github/azure-workflows/build-mac-x86_64.yml
index 645131c..3151c25 100644
--- a/.github/azure-workflows/build-mac-x86_64.yml
+++ b/.github/azure-workflows/build-mac-x86_64.yml
@@ -2,7 +2,7 @@ trigger:
- master
pool:
- vmImage: macOS-10.14
+ vmImage: macOS-10.15
steps:
- script: brew install llvm sdl2 qt@6 libslirp libarchive libepoxy
@@ -11,7 +11,7 @@ steps:
- script: mkdir $(Pipeline.Workspace)/build
displayName: 'Create build environment'
-- script: cmake $(Build.SourcesDirectory) -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH="$(brew --prefix qt@6);$(brew --prefix libarchive)" -DMACOS_BUNDLE_LIBS=ON -DMACOS_BUILD_DMG=ON -DUSE_QT6=ON -DCMAKE_TOOLCHAIN_FILE=$(Build.SourcesDirectory)/cmake/Toolchain-Homebrew-LLVM.cmake
+- script: cmake $(Build.SourcesDirectory) -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH="$(brew --prefix qt@6);$(brew --prefix libarchive)" -DMACOS_BUNDLE_LIBS=ON -DMACOS_BUILD_DMG=ON -DUSE_QT6=ON
displayName: 'Configure'
workingDirectory: $(Pipeline.Workspace)/build