From b37627d2c19ebef2ee785ed3b93944a9fd65fdd8 Mon Sep 17 00:00:00 2001 From: Cotton Hou Date: Fri, 16 Feb 2024 13:34:18 +0800 Subject: [PATCH] CI to silent wget by -nv (--no-verbose) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00c0e89..a17f940 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,7 @@ jobs: add-apt-repository -y ppa:git-core/ppa apt update apt install -y git - wget https://github.com/Kitware/CMake/releases/download/v3.28.0-rc5/cmake-3.28.0-rc5-linux-x86_64.sh + wget -nv https://github.com/Kitware/CMake/releases/download/v3.28.0-rc5/cmake-3.28.0-rc5-linux-x86_64.sh sh cmake-3.28.0-rc5-linux-x86_64.sh --skip-license --prefix=/usr - name: checkout uses: actions/checkout@v3 @@ -402,7 +402,7 @@ jobs: - uses: jcbhmr/setup-wasmtime@v2 - name: setup wasi-sdk run: | - wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-21/wasi-sdk_21.0_amd64.deb -P /tmp + wget -nv https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-21/wasi-sdk_21.0_amd64.deb -P /tmp sudo apt install /tmp/wasi-sdk*.deb - name: test run: |