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 3745fe7 commit 63f8928Copy full SHA for 63f8928
.github/workflows/CICD.yml
@@ -1261,10 +1261,13 @@ jobs:
1261
shell: bash
1262
run: |
1263
CARGO_FEATURES_OPTION='--features=${{ matrix.job.features }}' ;
1264
+ # Restrict sort to standalone binary on Windows
1265
+ # https://github.com/uutils/coreutils/issues/10861
1266
+ test '${{ matrix.job.features }}' == feat_os_windows && unset COREUTILS || COREUTILS="-p coreutils --features=${f} --no-default-features"
1267
for f in $(util/show-utils.sh ${CARGO_FEATURES_OPTION})
1268
do
1269
echo "Building and testing $f"
- cargo test -p "uu_$f" -p coreutils --features=$f --no-default-features
1270
+ cargo test -p "uu_$f" ${COREUTILS}
1271
done
1272
1273
test_selinux:
0 commit comments