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.
1 parent f90f9f9 commit 89e376cCopy full SHA for 89e376c
1 file changed
.github/workflows/builds.yml
@@ -65,12 +65,21 @@ jobs:
65
arch: x64
66
67
# ---------- configure + build ----------
68
- - name: Build examples (Unix)
+ - name: Configure (Unix)
69
if: runner.os != 'Windows'
70
shell: bash
71
+ env:
72
+ GITHUB_TOKEN: ${{ github.token }}
73
run: |
74
set -eux
- ./build.sh clean -G Ninja -DCMAKE_BUILD_TYPE=Release
75
+ cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
76
+
77
+ - name: Build (Unix)
78
+ if: runner.os != 'Windows'
79
+ shell: bash
80
+ run: |
81
+ set -eux
82
+ cmake --build build --config Release
83
84
- name: Configure (Windows)
85
if: runner.os == 'Windows'
0 commit comments