Skip to content

Commit 08fbdf5

Browse files
authored
Merge pull request #2435 from vdice/ci/restore-mac-amd64-builds
ci(build/release): restore mac amd64 builds
2 parents 576d9de + 8b59b93 commit 08fbdf5

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
runs-on: ${{ matrix.os }}
117117
strategy:
118118
matrix:
119-
os: [windows-latest, macos-14]
119+
os: [windows-latest, macos-13, macos-14]
120120
steps:
121121
- uses: actions/checkout@v3
122122

@@ -227,6 +227,14 @@ jobs:
227227
target: "aarch64-unknown-linux-gnu",
228228
targetDir: "target/aarch64-unknown-linux-gnu/release",
229229
}
230+
- {
231+
os: "macos-13",
232+
arch: "amd64",
233+
extension: "",
234+
extraArgs: "",
235+
target: "",
236+
targetDir: "target/release",
237+
}
230238
- {
231239
os: "macos-14",
232240
arch: "aarch64",

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ jobs:
4343
target: "aarch64-unknown-linux-gnu",
4444
targetDir: "target/aarch64-unknown-linux-gnu/release",
4545
}
46+
- {
47+
os: "macos-13",
48+
arch: "amd64",
49+
extension: "",
50+
extraArgs: "",
51+
target: "",
52+
targetDir: "target/release",
53+
}
4654
- {
4755
os: "macos-14",
4856
arch: "aarch64",

0 commit comments

Comments
 (0)