authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-01 21:47:38 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-01 21:47:38 -07:00
loga1ccc65916b5b78d9b259ba462ffabe3597ae973
tree20c9544677c36ee66e9b1aa72e3bc2bd0ef8aa49
parentd439d3542292abb84208b44fea9ed951203817a2
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

move that line to a place where the script and CI both observe it


3 files changed, 8 insertions(+), 8 deletions(-)

.github/workflows/push.yml+7-7
......@@ -36,13 +36,13 @@ jobs:
3636
3737 - run: zigmod zpm tags
3838
39 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-basic
40 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-git-dep
41 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-hg-dep
42 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-http-dep
43 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-systemlib-dep
44 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-local-dep
45 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-c-code
39 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-basic
40 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-git-dep
41 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-hg-dep
42 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-http-dep
43 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-systemlib-dep
44 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-local-dep
45 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-c-code
4646
4747 # Build All
4848 - run: ./build_release.sh x86_64-linux-musl
test_repo.sh+1
......@@ -1,6 +1,7 @@
11#!/bin/sh
22
33set -e
4unset ZIG_LOCAL_CACHE_DIR # TODO: link issue here
45
56clone_url=$1
67clone_dir=$(mktemp -d)
test_repo_all.sh-1
......@@ -1,7 +1,6 @@
11#!/bin/sh
22
33set -ex
4unset ZIG_LOCAL_CACHE_DIR # TODO: link issue here
54
65./test_repo.sh https://github.com/nektro/zigmod-test-basic
76./test_repo.sh https://github.com/nektro/zigmod-test-git-dep