-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (38 loc) · 1.34 KB
/
build_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
39
40
41
42
43
44
45
46
47
48
49
name: Build And Test MacOS
on:
push:
paths:
- "**/workflows/build_macos.yml"
- "**/cmake/**"
- "**/modules/**"
- "**/tests/**"
- "**/thirdparty/**"
- "CMakeLists.txt"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_15.1.app/Contents/Developer
steps:
- uses: actions/checkout@v3
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -G "Ninja Multi-Config" -DYUP_ENABLE_TESTS=ON -DYUP_ENABLE_EXAMPLES=OFF
- name: Build Debug
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config Debug --parallel 4 --target yup_tests
- name: Test Debug
working-directory: ${{runner.workspace}}/build/tests/Debug
run: ./yup_tests
- name: Build Release
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config Release --parallel 4 --target yup_tests
- name: Test Release
working-directory: ${{runner.workspace}}/build/tests/Release
run: ./yup_tests