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 793aa18 commit 236d5d6Copy full SHA for 236d5d6
.github/workflows/build.yml
@@ -232,8 +232,12 @@ jobs:
232
233
- name: Remove cmake and ninja
234
run: |
235
- for TOOL in cmake ninja; do
236
- while which -s ${TOOL}; do
+ # Remove cmake and ninja
+ set -euxo pipefail
237
+ # https://github.com/scikit-build/scikit-build-core/blob/3943920fa267dc83f9295279bea1c774c0916f13/src/scikit_build_core/program_search.py#L51
238
+ # https://github.com/scikit-build/scikit-build-core/blob/3943920fa267dc83f9295279bea1c774c0916f13/src/scikit_build_core/program_search.py#L70
239
+ for TOOL in cmake cmake3 ninja-build ninja samu; do
240
+ while which ${TOOL}; do
241
sudo rm -f $(which -a ${TOOL})
242
done
243
0 commit comments