Skip to content

Commit

Permalink
Merge pull request #18 from zrax/macos_ci
Browse files Browse the repository at this point in the history
Update macOS CI configurations to match current github environments
  • Loading branch information
zrax authored Jun 17, 2021
2 parents ef20995 + d226fcd commit a5f6805
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,17 @@ jobs:
make test
build-macos:
runs-on: macOS-latest
runs-on: ${{ matrix.cfg.os }}
strategy:
matrix:
xcode:
- Xcode_10.3
- Xcode_11.3.1
- Xcode_11.5
cfg:
- { os: macOS-10.15, xcode: Xcode_11.7 }
- { os: macOS-10.15, xcode: Xcode_12.4 }
steps:
- uses: actions/checkout@v1
- name: Build and Test
run: |
export PATH="/Applications/${{ matrix.xcode }}.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:$PATH"
export PATH="/Applications/${{ matrix.cfg.xcode }}.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:$PATH"
export CC=clang
export CXX=clang++
mkdir -p build && cd build
Expand Down

0 comments on commit a5f6805

Please sign in to comment.