Skip to content

Commit

Permalink
Update Github Actions workflow for MacOS builds
Browse files Browse the repository at this point in the history
* Remove MacOS 11 builds because it is no longer support by Apple or
  Homebrew
* Add MacOS 13 builds
  • Loading branch information
leonlynch committed Dec 11, 2023
1 parent d6a34d8 commit 005b41a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/macos-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
fail-fast: false
matrix:
include:
- { name: "MacOS 11", os: macos-11, osx_arch: "x86_64;arm64", build_type: "Debug", fetch_deps: YES }
- { name: "MacOS 11", os: macos-11, osx_arch: "x86_64", build_type: "Release", fetch_deps: NO }
- { name: "MacOS 12", os: macos-12, osx_arch: "x86_64", build_type: "Debug", fetch_deps: NO }
- { name: "MacOS 12", os: macos-12, osx_arch: "x86_64;arm64", build_type: "Release", fetch_deps: YES }
- { name: "MacOS 12", os: macos-12, osx_arch: "x86_64;arm64", build_type: "Debug", fetch_deps: YES }
- { name: "MacOS 12", os: macos-12, osx_arch: "x86_64", build_type: "Release", fetch_deps: NO }
- { name: "MacOS 13", os: macos-13, osx_arch: "x86_64", build_type: "Debug", fetch_deps: NO }
- { name: "MacOS 13", os: macos-13, osx_arch: "x86_64;arm64", build_type: "Release", fetch_deps: YES }

name: ${{ matrix.name }} build (static/${{ matrix.build_type }})
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 005b41a

Please sign in to comment.