-
-
Notifications
You must be signed in to change notification settings - Fork 30
38 lines (31 loc) · 963 Bytes
/
macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: macOS
on:
push:
branches:
- dev
- master
pull_request:
branches:
- dev
- master
jobs:
xcode:
runs-on: macos-10.15
strategy:
matrix:
build_type: [Debug, RelWithDebInfo, MinSizeRel, Release]
xcode: [12.4, 12.3, 12.2, 12.1.1, 12.1, 12, 11.7, 11.6, 11.5, 11.4.1, 11.3.1, 11.2.1, 10.3]
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
steps:
- uses: actions/checkout@v2
- name: CMake
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} -DTAU_BUILDINTERNALTESTS=On -DTAU_BUILDTHIRDPARTYTESTS=On
- name: Build
run: cmake --build build --config=${{ matrix.build_type }} --parallel 10
- name: Test (Internal)
run: |
cd build/bin && ./TauInternalTests
- name: Test (ThirdParty)
run: |
cd build/bin && ./TauThirdPartyTests_6502