We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0482560 commit f90f9f9Copy full SHA for f90f9f9
1 file changed
.github/workflows/builds.yml
@@ -65,21 +65,12 @@ jobs:
65
arch: x64
66
67
# ---------- configure + build ----------
68
- - name: Configure (Unix)
+ - name: Build examples (Unix)
69
if: runner.os != 'Windows'
70
shell: bash
71
- env:
72
- GITHUB_TOKEN: ${{ github.token }}
73
run: |
74
set -eux
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
+ ./build.sh clean -G Ninja -DCMAKE_BUILD_TYPE=Release
83
84
- name: Configure (Windows)
85
if: runner.os == 'Windows'
0 commit comments