diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d68f5459691a037e3cbb1291f108412a86a9a7ff..25c648b6c942bd3820a0f9dd831290df4855adbf 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -36,13 +36,13 @@ jobs: - run: zigmod zpm tags - - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-basic - - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-git-dep - - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-hg-dep - - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-http-dep - - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-systemlib-dep - - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-local-dep - - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-c-code + - run: ./test_repo.sh https://github.com/nektro/zigmod-test-basic + - run: ./test_repo.sh https://github.com/nektro/zigmod-test-git-dep + - run: ./test_repo.sh https://github.com/nektro/zigmod-test-hg-dep + - run: ./test_repo.sh https://github.com/nektro/zigmod-test-http-dep + - run: ./test_repo.sh https://github.com/nektro/zigmod-test-systemlib-dep + - run: ./test_repo.sh https://github.com/nektro/zigmod-test-local-dep + - run: ./test_repo.sh https://github.com/nektro/zigmod-test-c-code # Build All - run: ./build_release.sh x86_64-linux-musl diff --git a/test_repo.sh b/test_repo.sh index 672f221c6f95bf9acc2623f10ce8c15e4fcf6b33..5c407dfca23754dabb196db8dea3766639ce0b63 100755 --- a/test_repo.sh +++ b/test_repo.sh @@ -1,6 +1,7 @@ #!/bin/sh set -e +unset ZIG_LOCAL_CACHE_DIR # TODO: link issue here clone_url=$1 clone_dir=$(mktemp -d) diff --git a/test_repo_all.sh b/test_repo_all.sh index f05806ed2ccf51b6d6ffc4d46067100f754a0843..ee7982e915d539d9f0297a547765d04e371a5b67 100755 --- a/test_repo_all.sh +++ b/test_repo_all.sh @@ -1,7 +1,6 @@ #!/bin/sh set -ex -unset ZIG_LOCAL_CACHE_DIR # TODO: link issue here ./test_repo.sh https://github.com/nektro/zigmod-test-basic ./test_repo.sh https://github.com/nektro/zigmod-test-git-dep