Skip to content

Commit f92199a

Browse files
committed
change to aarch64 zig
1 parent 72f599f commit f92199a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,17 @@ jobs:
5151
build: |
5252
uname -a
5353
echo "fetching zig tar"
54-
curl --output zig-linux-x86_64-0.13.0.tar.xz https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
54+
# curl --output zig-linux-x86_64-0.13.0.tar.xz https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
55+
curl --output zig-linux-aarch64-0.13.0.tar.xz https://ziglang.org/download/0.13.0/zig-linux-aarch64-0.13.0.tar.xz
5556
echo "unzipping zig"
56-
tar xf zig-linux-x86_64-0.13.0.tar.xz
57+
# tar xf zig-linux-x86_64-0.13.0.tar.xz
58+
tar xf zig-linux-aarch64-0.13.0.tar.xz
5759
pwd
5860
ls
5961
echo "exporting path"
60-
export PATH=$PATH:$(pwd)/zig-linux-x86_64-0.13.0
62+
# export PATH=$PATH:$(pwd)/zig-linux-x86_64-0.13.0
63+
export PATH=$PATH:$(pwd)/zig-linux-aarch64-0.13.0
64+
6165
6266
# echo "installing cross-compilation tools"
6367
# sudo apt-get update

0 commit comments

Comments
 (0)