mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-07 16:06:51 +00:00
fix(zig): update the zig download in CI
This commit is contained in:
parent
923c5c7c28
commit
9031bccbb7
2 changed files with 6 additions and 6 deletions
|
|
@ -14,9 +14,9 @@ install-other-libs:
|
||||||
install-zig-llvm-valgrind-clippy-rustfmt:
|
install-zig-llvm-valgrind-clippy-rustfmt:
|
||||||
FROM +install-other-libs
|
FROM +install-other-libs
|
||||||
# zig
|
# zig
|
||||||
RUN wget -c https://ziglang.org/download/0.8.0/zig-linux-x86_64-0.8.0.tar.xz --no-check-certificate
|
RUN wget -c https://ziglang.org/download/0.9.0/zig-linux-x86_64-0.9.0.tar.xz --no-check-certificate
|
||||||
RUN tar -xf zig-linux-x86_64-0.8.0.tar.xz
|
RUN tar -xf zig-linux-x86_64-0.9.0.tar.xz
|
||||||
RUN ln -s /earthbuild/zig-linux-x86_64-0.8.0/zig /usr/bin/zig
|
RUN ln -s /earthbuild/zig-linux-x86_64-0.9.0/zig /usr/bin/zig
|
||||||
# llvm
|
# llvm
|
||||||
RUN apt -y install lsb-release software-properties-common gnupg
|
RUN apt -y install lsb-release software-properties-common gnupg
|
||||||
RUN wget https://apt.llvm.org/llvm.sh
|
RUN wget https://apt.llvm.org/llvm.sh
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,9 @@ popd
|
||||||
valgrind --version
|
valgrind --version
|
||||||
|
|
||||||
# install zig - can't use apt-get since we require at least a specific commit later then the most recent tag (0.6.0)
|
# install zig - can't use apt-get since we require at least a specific commit later then the most recent tag (0.6.0)
|
||||||
wget -c https://ziglang.org/download/0.7.1/zig-linux-x86_64-0.7.1.tar.xz --no-check-certificate
|
wget -c https://ziglang.org/download/0.9.0/zig-linux-x86_64-0.9.0.tar.xz --no-check-certificate
|
||||||
tar -xf zig-linux-x86_64-0.7.1.tar.xz
|
tar -xf zig-linux-x86_64-0.9.0.tar.xz
|
||||||
ln -s "$PWD/zig-linux-x86_64-0.7.1/zig" /usr/local/bin/zig
|
ln -s "$PWD/zig-linux-x86_64-0.9.0/zig" /usr/local/bin/zig
|
||||||
|
|
||||||
# test sccache
|
# test sccache
|
||||||
./ci/sccache -V
|
./ci/sccache -V
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue