From 7065539858ba2504c22086d9a957f9a792cc3bea Mon Sep 17 00:00:00 2001 From: Jinzhou Zhang Date: Wed, 5 Feb 2020 18:16:37 +0800 Subject: [PATCH] [ci] test for musl target --- ci/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/script.sh b/ci/script.sh index a12b9432..da25522f 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -12,7 +12,7 @@ main() { cp target/$TARGET/release/sk target/release case $TARGET in - x86_64-unknown-linux-gnu|i686-unknown-linux-gnu) + x86_64-unknown-linux-gnu|i686-unknown-linux-gnu|x86_64-unknown-linux-musl) # run the integration test tmux new "python3 test/test_skim.py &> out && touch ok" && cat out && [ -e ok ] ;;