Skip to content

Commit 49bdd2c

Browse files
committed
Use macOS 15 on CI
1 parent 9507413 commit 49bdd2c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
jobs:
2020
lint:
2121
name: Lint
22-
runs-on: macos-14
22+
runs-on: macos-15
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v4
@@ -32,7 +32,7 @@ jobs:
3232

3333
spell:
3434
name: Spell
35-
runs-on: macos-14
35+
runs-on: macos-15
3636
steps:
3737
- name: Checkout
3838
uses: actions/checkout@v4
@@ -45,7 +45,7 @@ jobs:
4545

4646
build-spm:
4747
name: Build (SPM)
48-
runs-on: macos-14
48+
runs-on: macos-15
4949
strategy:
5050
matrix:
5151
config: ['debug', 'release']
@@ -75,7 +75,7 @@ jobs:
7575

7676
build-xcode:
7777
name: Build (Xcode)
78-
runs-on: macos-14
78+
runs-on: macos-15
7979
strategy:
8080
matrix:
8181
config: ['debug', 'release']
@@ -103,7 +103,7 @@ jobs:
103103

104104
build-example:
105105
name: Build (example)
106-
runs-on: macos-14
106+
runs-on: macos-15
107107
steps:
108108
- name: Checkout
109109
uses: actions/checkout@v4
@@ -128,7 +128,7 @@ jobs:
128128

129129
test-spm:
130130
name: Test (SPM)
131-
runs-on: macos-14
131+
runs-on: macos-15
132132
steps:
133133
- name: Checkout
134134
uses: actions/checkout@v4
@@ -155,7 +155,7 @@ jobs:
155155

156156
test-xcode:
157157
name: Test (Xcode)
158-
runs-on: macos-14
158+
runs-on: macos-15
159159
steps:
160160
- name: Checkout
161161
uses: actions/checkout@v4

.github/workflows/documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616
jobs:
1717
build:
1818
name: Build Docs
19-
runs-on: macos-14
19+
runs-on: macos-15
2020
steps:
2121
- name: Setup netrc
2222
uses: extractions/netrc@v2

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ GENERIC_PLATFORM_VISIONOS = generic/platform=visionOS
1313
GENERIC_PLATFORM_MACOS = platform=macOS
1414
GENERIC_PLATFORM_MAC_CATALYST = platform=macOS,variant=Mac Catalyst
1515

16-
SIM_PLATFORM_IOS = platform=iOS Simulator,id=$(call udid_for,iOS 17.5,iPhone \d\+ Pro [^M])
17-
SIM_PLATFORM_TVOS = platform=tvOS Simulator,id=$(call udid_for,tvOS 17.5,TV)
18-
SIM_PLATFORM_VISIONOS = platform=visionOS Simulator,id=$(call udid_for,visionOS 1.2,Vision)
16+
SIM_PLATFORM_IOS = platform=iOS Simulator,id=$(call udid_for,iOS 18.0,iPhone \d\+ Pro [^M])
17+
SIM_PLATFORM_TVOS = platform=tvOS Simulator,id=$(call udid_for,tvOS 18.0,TV)
18+
SIM_PLATFORM_VISIONOS = platform=visionOS Simulator,id=$(call udid_for,visionOS 2.0,Vision)
1919
SIM_PLATFORM_MACOS = platform=macOS
2020
SIM_PLATFORM_MAC_CATALYST = platform=macOS,variant=Mac Catalyst
2121

0 commit comments

Comments
 (0)