Skip to content

Commit

Permalink
Update to build for both intel and m1 chips for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
cbuahin authored Oct 21, 2024
1 parent 35040bb commit 668adac
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,18 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [windows-latest, ubuntu-latest, macos-13, macos-14]
include:
- os: windows-latest
cmake_generator: -G "Visual Studio 17 2022" -A "x64"
continue-on-error: false
- os: ubuntu-latest
cmake_generator: -G "Unix Makefiles"
continue-on-error: false
- os: macos-latest
- os: macos-13
cmake_generator: -G "Xcode"
continue-on-error: false
- os: macos-14
cmake_generator: -G "Xcode"
continue-on-error: false
runs-on: ${{ matrix.os }}
Expand All @@ -46,4 +49,4 @@ jobs:
name: build-test-artifacts
path: |
SRC_engines/build/*.zip
SRC_engines/build/*.tar.gz
SRC_engines/build/*.tar.gz

0 comments on commit 668adac

Please sign in to comment.