Skip to content

Commit

Permalink
Move off macos-12 for builds (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobWall23 authored Oct 30, 2024
1 parent 0182ae1 commit abe4cfb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- stable
- beta
- nightly
- macos
- macos-intel
- macos-arm64
- win-msvc
- win-gnu
Expand All @@ -60,8 +60,9 @@ jobs:
- build: nightly
os: ubuntu-22.04
rust: nightly
- build: macos
os: macos-12
- build: macos-intel
os: macos-13
target: x86_64-apple-darwin
- build: macos-arm64
os: macos-14
target: aarch64-apple-darwin
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
RUST_BACKTRACE: 1
strategy:
matrix:
build: [linux, linux-arm64, linux-arm, macos, macos-arm64, win-msvc, win-gnu]
build: [linux, linux-arm64, linux-arm, macos-intel, macos-arm64, win-msvc, win-gnu]
include:
- build: linux
os: ubuntu-22.04
Expand All @@ -78,8 +78,8 @@ jobs:
- build: linux-arm
os: ubuntu-22.04
target: arm-unknown-linux-gnueabihf
- build: macos
os: macos-12
- build: macos-intel
os: macos-13
target: x86_64-apple-darwin
- build: macos-arm64
os: macos-14
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
run: ${{ env.CARGO }} build --verbose --release ${{ env.TARGET_FLAGS }}

- name: Strip release binary (linux and mac)
if: matrix.build == 'linux' || matrix.build == 'macos' || matrix.build == 'macos-arm64'
if: matrix.build == 'linux' || matrix.build == 'macos-intel' || matrix.build == 'macos-arm64'
run: strip "target/${{ matrix.target }}/release/ironhide"

- name: Strip release binary (arm)
Expand Down

0 comments on commit abe4cfb

Please sign in to comment.