Skip to content

Commit 89e376c

Browse files
no build.sh
1 parent f90f9f9 commit 89e376c

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/builds.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,21 @@ jobs:
6565
arch: x64
6666

6767
# ---------- configure + build ----------
68-
- name: Build examples (Unix)
68+
- name: Configure (Unix)
6969
if: runner.os != 'Windows'
7070
shell: bash
71+
env:
72+
GITHUB_TOKEN: ${{ github.token }}
7173
run: |
7274
set -eux
73-
./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
7483
7584
- name: Configure (Windows)
7685
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)