Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/native-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ concurrency:
jobs:
pixi:
strategy:
fail-fast: false
matrix:
platform:
- ubuntu-latest
Expand All @@ -28,6 +29,11 @@ jobs:
- name: Install environment
run: pixi install --locked
- name: Build SuperBuild
# The SuperBuild nests ninja inside ninja. Uncapped, each level runs
# cores+2 jobs and ~30 compilers exhaust the 16 GB runner. cmake
# --build honours this at both levels, so 3 bounds the total at 9.
env:
CMAKE_BUILD_PARALLEL_LEVEL: 3
run: pixi run build
- name: Test
run: pixi run test
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
with:
pixi-version: latest
locked: true
cache: false
# The build env (gpu) and the shipped runtime env (gpu-prod) are both needed.
environments: >-
gpu
Expand Down
Loading