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:...@@ -36,13 +36,13 @@ jobs:
3636
37 - run: zigmod zpm tags37 - run: zigmod zpm tags
3838
39 - run: unset ZIG_LOCAL_CACHE_DIR && ./test_repo.sh https://github.com/nektro/zigmod-test-basic39 - run: ./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-dep40 - run: ./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-dep41 - run: ./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-dep42 - run: ./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-dep43 - run: ./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-dep44 - run: ./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-code45 - run: ./test_repo.sh https://github.com/nektro/zigmod-test-c-code
4646
47 # Build All47 # Build All
48 - run: ./build_release.sh x86_64-linux-musl48 - run: ./build_release.sh x86_64-linux-musl
test_repo.sh+1
...@@ -1,6 +1,7 @@...@@ -1,6 +1,7 @@
1#!/bin/sh1#!/bin/sh
22
3set -e3set -e
4unset ZIG_LOCAL_CACHE_DIR # TODO: link issue here
45
5clone_url=$16clone_url=$1
6clone_dir=$(mktemp -d)7clone_dir=$(mktemp -d)
test_repo_all.sh-1
...@@ -1,7 +1,6 @@...@@ -1,7 +1,6 @@
1#!/bin/sh1#!/bin/sh
22
3set -ex3set -ex
4unset ZIG_LOCAL_CACHE_DIR # TODO: link issue here
54
6./test_repo.sh https://github.com/nektro/zigmod-test-basic5./test_repo.sh https://github.com/nektro/zigmod-test-basic
7./test_repo.sh https://github.com/nektro/zigmod-test-git-dep6./test_repo.sh https://github.com/nektro/zigmod-test-git-dep