| 1 | #!/bin/sh |
| 2 | |
| 3 | set -e |
| 4 | unset ZIG_LOCAL_CACHE_DIR # TODO: link issue here |
| 5 | |
| 6 | clone_url=$1 |
| 7 | clone_dir=$(mktemp -d) |
| 8 | |
| 9 | git clone $clone_url $clone_dir |
| 10 | cd $clone_dir |
| 11 | |
| 12 | zigmod fetch |
| 13 | |
| 14 | zig build test --summary all |