We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef20995 + d226fcd commit a5f6805Copy full SHA for a5f6805
.github/workflows/ci-build.yml
@@ -44,18 +44,17 @@ jobs:
44
make test
45
46
build-macos:
47
- runs-on: macOS-latest
+ runs-on: ${{ matrix.cfg.os }}
48
strategy:
49
matrix:
50
- xcode:
51
- - Xcode_10.3
52
- - Xcode_11.3.1
53
- - Xcode_11.5
+ cfg:
+ - { os: macOS-10.15, xcode: Xcode_11.7 }
+ - { os: macOS-10.15, xcode: Xcode_12.4 }
54
steps:
55
- uses: actions/checkout@v1
56
- name: Build and Test
57
run: |
58
- 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"
59
export CC=clang
60
export CXX=clang++
61
mkdir -p build && cd build
0 commit comments