From: Steve Myers Date: Wed, 22 Sep 2021 16:51:37 +0000 (-0700) Subject: [ci] Change check-wasm job to use ubuntu-20.04 runner X-Git-Tag: v0.12.0~9 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/struct.Error.html?a=commitdiff_plain;h=a685b22aa693e6d95a9719287faaa115dc5c0ec0;p=bdk [ci] Change check-wasm job to use ubuntu-20.04 runner --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index d88b7851..233c98ee 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -113,7 +113,7 @@ jobs: check-wasm: name: Check WASM - runs-on: ubuntu-16.04 + runs-on: ubuntu-20.04 env: CC: clang-10 CFLAGS: -I/usr/include @@ -130,7 +130,7 @@ jobs: key: ${{ runner.os }}-cargo-${{ github.job }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} # Install a recent version of clang that supports wasm32 - run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - || exit 1 - - run: sudo apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-10 main" || exit 1 + - run: sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main" || exit 1 - run: sudo apt-get update || exit 1 - run: sudo apt-get install -y libclang-common-10-dev clang-10 libc6-dev-i386 || exit 1 - name: Set default toolchain