From: Luis Schwab Date: Thu, 13 Mar 2025 21:00:23 +0000 (-0300) Subject: fix(ci): use `ubuntu-latest` on `check-wasm` job X-Git-Tag: wallet-1.2.0~6^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/enum.FileError.html?a=commitdiff_plain;h=9710ecf1aafb50646f1ca2cd526644fb77393b6d;p=bdk fix(ci): use `ubuntu-latest` on `check-wasm` job --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index c287b88c..c5bf2109 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -101,9 +101,9 @@ jobs: check-wasm: needs: prepare name: Check WASM - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: - CC: clang-10 + CC: clang-14 CFLAGS: -I/usr/include steps: - name: Checkout @@ -113,7 +113,7 @@ jobs: # 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-get update || exit 1 - - run: sudo apt-get install -y libclang-common-10-dev clang-10 libc6-dev-i386 || exit 1 + - run: sudo apt-get install -y libclang-common-14-dev clang-14 libc6-dev-i386 || exit 1 - name: Install Rust toolchain uses: actions-rs/toolchain@v1 with: