Skip to content

Commit 4f4896f

Browse files
committed
Move the Mac OS target in the build script
1 parent 3252917 commit 4f4896f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
fail-fast: false
4848
matrix:
4949
include: [
50-
{ os: macos-13, host_arch: x86_64, macos_target: x86_64-apple-macos10.12, target_arch: x86_64 },
51-
{ os: macos-14, host_arch: aarch64, macos_target: arm64-apple-macos11, target_arch: aarch64 }
50+
{ os: macos-13, host_arch: x86_64, macos_target: x86_64-apple-macos10.12, version_min: 10.12, target_arch: x86_64 },
51+
{ os: macos-14, host_arch: aarch64, macos_target: arm64-apple-macos11, version_min: 11, target_arch: aarch64 }
5252
]
5353
runs-on: ${{ matrix.os }}
5454
steps:
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Compile
7171
env:
72-
CC: cc -target ${{ matrix.macos_target }}
72+
CC: cc -target ${{ matrix.macos_target }} -mmacosx-version-min=${{ matrix.version_min }}
7373
run: ./sbt compile
7474

7575
- name: Env

0 commit comments

Comments
 (0)