From 437d2ea531d8c1090952b039639bd0a62ae392b9 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 18 Jan 2024 14:50:37 +0100 Subject: [PATCH] ci: remove -p uucore when running nextest --- .github/workflows/CICD.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 40d7c018df4..dfdf70a578c 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -612,15 +612,15 @@ jobs: run: | ## Install/setup prerequisites case '${{ matrix.job.target }}' in - arm-unknown-linux-gnueabihf) + arm-unknown-linux-gnueabihf) sudo apt-get -y update sudo apt-get -y install gcc-arm-linux-gnueabihf ;; - aarch64-unknown-linux-*) + aarch64-unknown-linux-*) sudo apt-get -y update sudo apt-get -y install gcc-aarch64-linux-gnu ;; - *-redox*) + *-redox*) sudo apt-get -y update sudo apt-get -y install fuse3 libfuse-dev ;; @@ -1013,7 +1013,7 @@ jobs: CARGO_UTILITY_LIST_OPTIONS="$(for u in ${UTILITY_LIST}; do echo -n "-puu_${u} "; done;)" outputs CARGO_UTILITY_LIST_OPTIONS - name: Test - run: cargo nextest run --profile ci --hide-progress-bar ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} -p uucore -p coreutils + run: cargo nextest run --profile ci --hide-progress-bar ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} -p coreutils env: RUSTC_WRAPPER: "" RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"