Skip to content

Commit f7bc7d3

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 96685c5 commit f7bc7d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 0 deletions
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 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)