From a2434eb76ed0a37c18901d6a5fc025684b716b35 Mon Sep 17 00:00:00 2001 From: B1ueber2y Date: Thu, 1 Aug 2024 01:58:46 +0200 Subject: [PATCH] upddate. --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a958659..393ee37 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,13 +18,14 @@ jobs: matrix: config: [ {os: ubuntu-latest}, - {os: macos-13, arch: x86_64}, - {os: macos-13, arch: arm64}, + {os: macos-14, arch: x86_64}, + {os: macos-14, arch: arm64}, {os: windows-latest}, ] env: COMPILER_CACHE_VERSION: 1 COMPILER_CACHE_DIR: ${{ github.workspace }}/compiler-cache + MACOSX_DEPLOYMENT_TARGET: 10.12 steps: - uses: actions/checkout@v4 - uses: actions/cache@v4 @@ -37,7 +38,7 @@ jobs: if: runner.os == 'macOS' run: | if [[ ${{ matrix.config.arch }} == "x86_64" ]]; then - VCPKG_TARGET_TRIPLET="x64-osx" + VCPKG_TARGET_TRIPLET="x64-osx-release" elif [[ ${{ matrix.config.arch }} == "arm64" ]]; then VCPKG_TARGET_TRIPLET="arm64-osx-release" else