Skip to content

Commit d9526e0

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 a92f465 commit d9526e0

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 # Needed for ASan.
13+
run: sudo apt-get -y clang-9
1214
- name: Checkout Toolchain
1315
uses: actions-rs/toolchain@v1
1416
with:

0 commit comments

Comments
 (0)