Skip to content

Commit 5d004fb

Browse files
committed
Merge bitcoindevkit/bdk#1885: ci: use ubuntu-latest on check-wasm
9710ecf fix(ci): use `ubuntu-latest` on `check-wasm` job (Luis Schwab) Pull request description: ### Description This PR bumps the `check-wasm` job runner image to `ubuntu-24.04`. It was previously running `ubuntu-20.04`, which is set to be unsupported in a 3 weeks (see actions/runner-images#11101); `clang` gets bumped to `clang-14` because of this. ### Checklists #### All Submissions: * [X] I've signed all my commits * [X] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [X] I ran `cargo fmt` and `cargo clippy` before committing ACKs for top commit: notmandatory: ACK 9710ecf Tree-SHA512: 4ac8d6808211f26ab5ba4700edd70072f06c3623fbc3d33c17ee2679c68849fa9ce71f2c488c3ce45a4f814b04b946c8a909763898d7190984ff3486d16bcaef
2 parents f0faff6 + 9710ecf commit 5d004fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cont_integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ jobs:
101101
check-wasm:
102102
needs: prepare
103103
name: Check WASM
104-
runs-on: ubuntu-20.04
104+
runs-on: ubuntu-latest
105105
env:
106-
CC: clang-10
106+
CC: clang-14
107107
CFLAGS: -I/usr/include
108108
steps:
109109
- name: Checkout
@@ -113,7 +113,7 @@ jobs:
113113
# Install a recent version of clang that supports wasm32
114114
- run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - || exit 1
115115
- run: sudo apt-get update || exit 1
116-
- run: sudo apt-get install -y libclang-common-10-dev clang-10 libc6-dev-i386 || exit 1
116+
- run: sudo apt-get install -y libclang-common-14-dev clang-14 libc6-dev-i386 || exit 1
117117
- name: Install Rust toolchain
118118
uses: actions-rs/toolchain@v1
119119
with:

0 commit comments

Comments
 (0)