File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -612,15 +612,15 @@ jobs:
612
612
run : |
613
613
## Install/setup prerequisites
614
614
case '${{ matrix.job.target }}' in
615
- arm-unknown-linux-gnueabihf)
615
+ arm-unknown-linux-gnueabihf)
616
616
sudo apt-get -y update
617
617
sudo apt-get -y install gcc-arm-linux-gnueabihf
618
618
;;
619
- aarch64-unknown-linux-*)
619
+ aarch64-unknown-linux-*)
620
620
sudo apt-get -y update
621
621
sudo apt-get -y install gcc-aarch64-linux-gnu
622
622
;;
623
- *-redox*)
623
+ *-redox*)
624
624
sudo apt-get -y update
625
625
sudo apt-get -y install fuse3 libfuse-dev
626
626
;;
@@ -1012,8 +1012,16 @@ jobs:
1012
1012
UTILITY_LIST="$(./util/show-utils.sh ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }})"
1013
1013
CARGO_UTILITY_LIST_OPTIONS="$(for u in ${UTILITY_LIST}; do echo -n "-puu_${u} "; done;)"
1014
1014
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 }}
1015
1023
- 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 }}
1017
1025
env :
1018
1026
RUSTC_WRAPPER : " "
1019
1027
RUSTFLAGS : " -Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"
You can’t perform that action at this time.
0 commit comments