Skip to content

Commit

Permalink
Use macos-12 in github actions
Browse files Browse the repository at this point in the history
macos-10.15 is deprecated and will be removed at the end of next month
according to this announcement: https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22/

Use the newest available version macos-12 in github actions instead.
  • Loading branch information
jschwe committed Aug 8, 2022
1 parent d5330b3 commit ce00696
Showing 1 changed file with 8 additions and 21 deletions.
29 changes: 8 additions & 21 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
os:
- windows-2019 # windows-latest is currently not having a supported MSVC compiler
- ubuntu-latest
- macos-10.15
- macos-12
arch:
- x86_64
- i686
Expand All @@ -41,19 +41,6 @@ jobs:
generator:
- default # This is just whatever the platform default is
- ninja
include:
- os: macos-latest
arch: x86_64
abi: darwin
cmake: 3.19.0
rust: 1.44.1
generator: default
- os: macos-latest
arch: x86_64
abi: darwin
cmake: 3.19.0
rust: stable
generator: ninja
exclude:

# You cannot build with GNU using Visual Studio on Windows
Expand All @@ -76,11 +63,11 @@ jobs:
generator: ninja
- os: windows-2019
arch: powerpc64le
- os: macos-10.15
- os: macos-12
arch: i686
- os: macos-10.15
- os: macos-12
arch: aarch64
- os: macos-10.15
- os: macos-12
arch: powerpc64le

# ABI
Expand All @@ -90,14 +77,14 @@ jobs:
abi: darwin
- os: windows-2019
abi: darwin
- os: macos-10.15
- os: macos-12
abi: msvc
- os: macos-10.15
- os: macos-12
abi: gnu

# Rust
# Build each set only with the earliest compatible versioned Rust
- os: macos-10.15
- os: macos-12
rust: 1.45.0
- os: ubuntu-latest
rust: 1.45.0
Expand Down Expand Up @@ -257,7 +244,7 @@ jobs:
os:
- windows-2019
- ubuntu-latest
- macos-10.15
- macos-12
method:
- subdirectory
- install
Expand Down

0 comments on commit ce00696

Please sign in to comment.