Fix CI: Require ziglang < 0.11 (#1250)

ziglang 0.11 causes link failure in our CI

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2023-08-06 14:53:47 +10:00 committed by GitHub
parent c8d82fea0f
commit 3181e16e36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -184,7 +184,7 @@ ci-apt-deps := if target == "x86_64-unknown-linux-gnu" { "liblzma-dev libzip-dev
[linux]
ci-install-deps:
if [ -n "{{ci-apt-deps}}" ]; then sudo apt update && sudo apt install -y --no-install-recommends {{ci-apt-deps}}; fi
if [ -n "{{use-cargo-zigbuild}}" ]; then pip3 install cargo-zigbuild; fi
if [ -n "{{use-cargo-zigbuild}}" ]; then pip3 install -r zigbuild-requirements.txt; fi
[macos]
[windows]