From 7b7e4680599b3e903031da319d855a0305f0370e Mon Sep 17 00:00:00 2001 From: Yashodhan Joshi Date: Tue, 13 Dec 2022 14:09:50 +0530 Subject: [PATCH] fix makefile script --- .github/workflows/release.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5df6fa940..70f950e29 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - name: Build run: make youki-release - name: test - run: make test-all + run: make unittest featuretest oci-tests upload: name: Upload diff --git a/Makefile b/Makefile index 6c4a31679..92668f2bd 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ all: youki-release rust-oci-tests-bin runtimetest # Tests unittest: - LD_LIBRARY_PATH=$HOME/.wasmedge/lib cd ./crates && cargo test --all --all-targets --all-features + cd ./crates && LD_LIBRARY_PATH=${HOME}/.wasmedge/lib cargo test --all --all-targets --all-features featuretest: ./scripts/features_test.sh