Skip to content

Commit 04e20c0

Browse files
committed
chore(ci): stop building for macos-13, x86
This platform now has tier 2 support from the Rust project, and is no longer properly tested. It's also very slow to build for. See: rust-lang/rust#145252
1 parent 3730987 commit 04e20c0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/tauri-release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
include:
37-
- platform: "macos-14" # for Arm based macs (M1 and above).
37+
- platform: "macos-latest" # for Arm based macs (M1 and above).
3838
args: "--target aarch64-apple-darwin"
39-
- platform: "macos-13" # for Intel based macs.
40-
args: "--target x86_64-apple-darwin"
4139
- platform: "depot-ubuntu-22.04-4"
4240
args: ""
4341

@@ -69,7 +67,7 @@ jobs:
6967
uses: dtolnay/rust-toolchain@stable # Set this to dtolnay/rust-toolchain@nightly
7068
with:
7169
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
72-
targets: ${{ (matrix.platform == 'macos-14' || matrix.platform == 'macos-13') && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
70+
targets: ${{ (matrix.platform == 'macos-latest') && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
7371

7472
- name: Rust cache
7573
uses: swatinem/rust-cache@v2

0 commit comments

Comments
 (0)