diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 60d0458..00ec00d 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -142,9 +142,8 @@ jobs: id: test-options shell: bash run: | - # test only library unit tests and binary for arm-type targets unset CARGO_TEST_OPTIONS - unset CARGO_TEST_OPTIONS ; case ${{ matrix.job.target }} in arm-* | aarch64-*) CARGO_TEST_OPTIONS="--lib --bin ${PROJECT_NAME}" ;; esac; + unset CARGO_TEST_OPTIONS ; case ${{ matrix.job.target }} in arm-* | aarch64-*) CARGO_TEST_OPTIONS="--bin ${PROJECT_NAME}" ;; esac; echo ::set-output name=CARGO_TEST_OPTIONS::${CARGO_TEST_OPTIONS} - name: Run tests