Skip to content

Commit

Permalink
CI: Test on macos-10.15 instead of macos-latest
Browse files Browse the repository at this point in the history
macos-latest is now macos-11, which is currently not working. The issue
is that `ld` can't find the `System` library.
As a quick fix for the CI it makes sense to just test on the previous
version of macos, until someone finds the time to fix the linker flags
on macos-11

Signed-off-by: Jonathan Schwender <[email protected]>
  • Loading branch information
jschwe authored and ogoffart committed Dec 30, 2021
1 parent e0d83d4 commit c49ab0c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
os:
- windows-latest
- ubuntu-latest
- macos-latest
- macos-10.15 # macos-11 is currently not working.
arch:
- x86_64
- i686
Expand Down Expand Up @@ -69,11 +69,11 @@ jobs:
generator: ninja
- os: windows-latest
arch: powerpc64le
- os: macos-latest
- os: macos-10.15
arch: i686
- os: macos-latest
- os: macos-10.15
arch: aarch64
- os: macos-latest
- os: macos-10.15
arch: powerpc64le

# ABI
Expand All @@ -83,14 +83,14 @@ jobs:
abi: darwin
- os: windows-latest
abi: darwin
- os: macos-latest
- os: macos-10.15
abi: msvc
- os: macos-latest
- os: macos-10.15
abi: gnu

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

0 comments on commit c49ab0c

Please sign in to comment.