Skip to content

Commit b22c797

Browse files
Modify build command to stop on first failure
Removed the 'continue-on-failure' option from the build command to ensure the build process stops at the first failure.
1 parent 730280c commit b22c797

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/testpr.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,7 @@ jobs:
113113
- name: Build recipes
114114
shell: bash -l {0}
115115
run: |
116-
# --continue-on-failure: keep building packages that don't depend on a
117-
# failed one instead of stopping at the first failure. Everything that
118-
# builds lands in the output dir and is saved by the "Save build cache"
119-
# step (if: always()), so a later run skips them via --skip-existing
120-
# instead of rebuilding the whole world. rattler-build still exits
121-
# non-zero if any package failed, so the check stays red.
122-
pixi run rattler-build build --recipe-dir recipes --target-platform ${{ matrix.platform }} -m ./conda_build_config.yaml -c https://prefix.dev/conda-forge -c https://prefix.dev/robostack-lyrical --skip-existing --continue-on-failure
116+
pixi run rattler-build build --recipe-dir recipes --target-platform ${{ matrix.platform }} -m ./conda_build_config.yaml -c https://prefix.dev/conda-forge -c https://prefix.dev/robostack-lyrical --skip-existing
123117
124118
- name: See packages that will be saved in cache
125119
shell: bash -l {0}

0 commit comments

Comments
 (0)