Skip to content

Commit df745d0

Browse files
committed
ci: undo part of #5825
1 parent 10b8c1c commit df745d0

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/CICD.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -612,15 +612,15 @@ jobs:
612612
run: |
613613
## Install/setup prerequisites
614614
case '${{ matrix.job.target }}' in
615-
arm-unknown-linux-gnueabihf)
615+
arm-unknown-linux-gnueabihf)
616616
sudo apt-get -y update
617617
sudo apt-get -y install gcc-arm-linux-gnueabihf
618618
;;
619-
aarch64-unknown-linux-*)
619+
aarch64-unknown-linux-*)
620620
sudo apt-get -y update
621621
sudo apt-get -y install gcc-aarch64-linux-gnu
622622
;;
623-
*-redox*)
623+
*-redox*)
624624
sudo apt-get -y update
625625
sudo apt-get -y install fuse3 libfuse-dev
626626
;;
@@ -1012,8 +1012,16 @@ jobs:
10121012
UTILITY_LIST="$(./util/show-utils.sh ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }})"
10131013
CARGO_UTILITY_LIST_OPTIONS="$(for u in ${UTILITY_LIST}; do echo -n "-puu_${u} "; done;)"
10141014
outputs CARGO_UTILITY_LIST_OPTIONS
1015+
- name: Test uucore
1016+
run: cargo nextest run --profile ci --hide-progress-bar -p uucore
1017+
env:
1018+
RUSTC_WRAPPER: ""
1019+
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"
1020+
RUSTDOCFLAGS: "-Cpanic=abort"
1021+
RUST_BACKTRACE: "1"
1022+
# RUSTUP_TOOLCHAIN: ${{ steps.vars.outputs.TOOLCHAIN }}
10151023
- name: Test
1016-
run: cargo nextest run --profile ci --hide-progress-bar ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} -p uucore -p coreutils
1024+
run: cargo nextest run --profile ci --hide-progress-bar ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }}
10171025
env:
10181026
RUSTC_WRAPPER: ""
10191027
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"

0 commit comments

Comments
 (0)