Skip to content

Commit b3667eb

Browse files
committed
Install clang to run adress sanitizer
The address sanitizer job is silently failing at the moment because we do not install clang. Install clang so the address sanitizer job can run. Do not fix the silent failure, that will be done later on.
1 parent fcd81c3 commit b3667eb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/rust.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
steps:
1010
- name: Checkout Crate
1111
uses: actions/checkout@v2
12+
- name: Install clang # Needed for ASan.
13+
run: sudo apt-get install -y clang
1214
- name: Checkout Toolchain
1315
uses: actions-rs/toolchain@v1
1416
with:

0 commit comments

Comments
 (0)