summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <mail@david-peter.de>2021-08-22 15:36:06 +0200
committerDavid Peter <mail@david-peter.de>2021-08-22 15:36:06 +0200
commitb56dd5cafd7b8ca90974d0d79670d38fa60b565f (patch)
tree511129cd264c63681b3a42e8fe60ad1c38bcc609
parent3b00ca9ddbaab055ac2ab0edffc510ed1cac7537 (diff)
Remove --lib optionci-improvements
-rw-r--r--.github/workflows/CICD.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 8816238..f83e0ca 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -150,7 +150,7 @@ jobs:
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