From a1ccc65916b5b78d9b259ba462ffabe3597ae973 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Mon, 1 Jun 2026 21:47:38 -0700 Subject: [PATCH] move that line to a place where the script and CI both observe it --- .github/workflows/push.yml | 14 +++++++------- test_repo.sh | 1 + test_repo_all.sh | 1 - 3 files changed, 8 insertions(+), 8 deletions(-) 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 -- 2.54.0