Skip to content

Commit 7c2e1fb

Browse files
committed
Update Intel Mac builds to macos-13 images for MacOS GitHub Actions
macos-12 images will be removed on 3.12.2024, and macos-14 no longer support Intel-based MacOS in free (OSS) tier.
1 parent a6ee7e2 commit 7c2e1fb

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/mac-builds-m1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: M1 Mac builds
1+
name: Arm Mac builds
22

33
on: [push, pull_request]
44

.github/workflows/mac-builds.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
name: Mac builds
1+
name: Intel Mac builds
22

33
on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: macos-12
7+
# From macos-14 forward, the baseline "macos-X" image is Arm based,
8+
# and not Intel based. Thus this is the newest image we can use for
9+
# Intel MacOS CI, and there don't seem to be any plans to keep providing
10+
# the Intel based images for free to OSS projects.
11+
runs-on: macos-13
812
strategy:
913
matrix:
1014
cxx:

0 commit comments

Comments
 (0)