Skip to content

Commit

Permalink
ci: Fix macOS build by downgrading to 10.15
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Mar 8, 2022
1 parent f577e2a commit 3b729a6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ jobs:
needs: lint
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest", "self-hosted-linux-arm64"]
# NOTE: macos-10.15 is required for now, to work around issues with our
# build system. See related comments in
# .github/workflows/custom-actions/build-packager/action.yaml
os: ["ubuntu-latest", "macos-10.15", "windows-latest", "self-hosted-linux-arm64"]
build_type: ["Debug", "Release"]
lib_type: ["static", "shared"]
include:
Expand All @@ -47,7 +50,7 @@ jobs:
target_arch: x64
exe_ext: ""
build_type_suffix: ""
- os: macos-latest
- os: macos-10.15
os_name: osx
target_arch: x64
exe_ext: ""
Expand Down

0 comments on commit 3b729a6

Please sign in to comment.