From 6c014f3baa0c379cab8af178fc4e7edea81bbde7 Mon Sep 17 00:00:00 2001 From: samuelOsborne Date: Wed, 4 Dec 2024 17:18:02 +0100 Subject: [PATCH] fix: zlib renaming worked, fixing jpeg arch symbols - changed to macos latest --- .github/workflows/release.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e0d2ad6d..fd5522ba 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,14 +10,13 @@ concurrency: jobs: build-apple: - runs-on: macos-14-xlarge - if: github.head_ref == 'release' && github.event.pull_request.merged == true + runs-on: macos-latest steps: - uses: actions/checkout@v4 - uses: Homebrew/actions/setup-homebrew@master - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: "16.0" + xcode-version: "15.4" - uses: ningenMe/setup-rustup@v1.1.0 - name: Install Make @@ -30,8 +29,8 @@ jobs: - name: Build Apple env: - APPLE_XCODE_APP_NAME: Xcode_16.0.app - APPLE_MACOSX_SDK: MacOSX15.0 + APPLE_XCODE_APP_NAME: Xcode_15.4.app + APPLE_MACOSX_SDK: MacOSX14.5 run: rm -f /usr/local/lib/libjpeg* ; make apple - name: Upload Apple Artifacts @@ -69,6 +68,7 @@ jobs: build-wasm: runs-on: macos-latest + if: github.head_ref == 'release' && github.event.pull_request.merged == true steps: - uses: actions/checkout@v4 - uses: Homebrew/actions/setup-homebrew@master