Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Move off macos-12 for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BobWall23 committed Oct 24, 2024
1 parent b4a7837 commit f74edeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [ubuntu-20.04, macos-12]
target: [ubuntu-20.04, macos-14]
runs-on: ${{ matrix.target }}
steps:
- name: Checkout ironoxide-swig-bindings
Expand All @@ -35,8 +35,8 @@ jobs:
# but a) that won't work for Linux and b) we only publish the iOS binary to Homebrew, not one for MacOS. Therefore
# we do this hacks below so the library can find the right files.
- name: Move libironoxide (OSX)
run: mkdir -p ironoxide-swift/.build/x86_64-apple-macosx/debug && cp target/release/libironoxide.dylib $_
if: matrix.target == 'macos-12'
run: mkdir -p ironoxide-swift/.build/aarch64-apple-darwin/debug && cp target/release/libironoxide.dylib $_
if: matrix.target == 'macos-14'
- name: Move libironoxide (Linux)
run: mkdir -p ironoxide-swift/.build/x86_64-unknown-linux-gnu/debug && cp target/release/libironoxide.so $_
if: matrix.target == 'ubuntu-20.04'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build-docs:
runs-on: macos-12
runs-on: macos-14
steps:
- name: Checkout ironoxide-swig-bindings
uses: actions/checkout@v2
Expand Down

0 comments on commit f74edeb

Please sign in to comment.