From ee713bce7061d876b71995d3eb2c1428de0453f5 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Wed, 12 Jan 2022 15:40:25 +0800 Subject: [PATCH] ci: fix FreeBSD --- .cirrus.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 1d4dc2dc..d84213e1 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -11,7 +11,9 @@ task: RUSTUP_IO_THREADS: 1 setup_script: - pkg update - - pkg install -y -f curl node yarn npm libnghttp2 + - pkg install -y -f curl node16 libnghttp2 + - curl -qL https://www.npmjs.com/install.sh | sh + - npm install -g yarn - curl https://sh.rustup.rs -sSf --output rustup.sh - sh rustup.sh -y --profile minimal --default-toolchain stable - |