From cc79be035a4afc01ee3f307d74ec5d1b243543ec Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 3 Dec 2022 17:57:37 +0100 Subject: [PATCH] busybox: Add the file at the right place --- .github/workflows/CICD.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index fbd94093d..ad8b107a8 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -772,12 +772,14 @@ jobs: - name: "Run BusyBox test suite" shell: bash run: | + cp .busybox-config target/debug/.config ## Run BusyBox test suite bindir=$(pwd)/target/debug cd tmp/busybox-*/testsuite output=$(bindir=$bindir ./runtest 2>&1 || true) printf "%s\n" "${output}" n_fails=$(echo "$output" | grep "^FAIL:\s" | wc --lines) + echo "n_fails $n_fails" if [ $n_fails -gt 0 ] ; then echo "::warning ::${n_fails}+ test failures" ; fi test_android: