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: