Skip to content

Commit a08029e

Browse files
committed
Merge #500: Use clang instead of clang-9
a59028c Use clang instead of clang-9 (Tobin C. Harding) Pull request description: The current version of clang is 14, there is no obvious reason why we use clang-9 (as far as I can tell on my local machine). Use `clang` instead of `clang-9` so that the latest version is used by default. This effects the version installed by CI as well as the version used to run commands in `test.sh`. ACKs for top commit: apoelstra: ACK a59028c Tree-SHA512: b3c5a56d21dc0bc8cb80db9854917b39c86ba735434b3a644eb22608492b07558ddff4b2ee3ff5b14e066d31fbdcc890d4c9e3f44af7b1d62c5e8eab6d31b90e
2 parents dfb51e5 + a59028c commit a08029e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Checkout Crate
6262
uses: actions/checkout@v2
6363
- name: Install clang
64-
run: sudo apt-get install -y clang-9
64+
run: sudo apt-get install -y clang
6565
- name: Checkout Toolchain
6666
uses: actions-rs/toolchain@v1
6767
with:

contrib/test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ fi
6969

7070
# Webassembly stuff
7171
if [ "$DO_WASM" = true ]; then
72-
clang-9 --version
72+
clang --version
7373
CARGO_TARGET_DIR=wasm cargo install --force wasm-pack
7474
printf '\n[lib]\ncrate-type = ["cdylib", "rlib"]\n' >> Cargo.toml
75-
CC=clang-9 wasm-pack build
76-
CC=clang-9 wasm-pack test --node
75+
CC=clang wasm-pack build
76+
CC=clang wasm-pack test --node
7777
fi
7878

7979
# Address Sanitizer

0 commit comments

Comments
 (0)