-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update minimum macOS supported version to Ventura (13) (#3780)
macOS 12 has been end of life for 2 months, GitHub is removing support for the images very soon (within a week or so). https://endoflife.date/macos
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ jobs: | |
uses: hendrikmuhs/[email protected] | ||
with: | ||
variant: sccache | ||
key: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} | ||
restore-keys: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} | ||
key: macos-15-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} | ||
restore-keys: macos-15-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} | ||
max-size: 1000M | ||
|
||
- name: CMake Generation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ on: | |
jobs: | ||
build: | ||
name: Intel | ||
runs-on: macos-12 | ||
runs-on: macos-13 | ||
timeout-minutes: 120 | ||
|
||
steps: | ||
|
@@ -41,8 +41,8 @@ jobs: | |
uses: hendrikmuhs/[email protected] | ||
with: | ||
variant: sccache | ||
key: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} | ||
restore-keys: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} | ||
key: macos-13-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} | ||
restore-keys: macos-13-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} | ||
max-size: 1000M | ||
|
||
- name: CMake Generation | ||
|