Skip to content

Commit

Permalink
Merge pull request #18124 from miri64/release-tests/fix/install-libasan
Browse files Browse the repository at this point in the history
release-tests: install libasan as native dependency
  • Loading branch information
miri64 authored May 23, 2022
2 parents ca17201 + c36a56c commit 37db22e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ jobs:
if: ${{ matrix.pytest_mark == 'not iotlab_creds' }}
run: |
sudo RIOT/dist/tools/tapsetup/tapsetup -c 11
- name: Install native dependencies
if: ${{ matrix.pytest_mark == 'not iotlab_creds' }}
run: |
sudo apt-get update
sudo apt-get install lib32asan5
- name: Run release tests
timeout-minutes: 350
run: |
Expand Down
7 changes: 7 additions & 0 deletions boards/native/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ On Debian/Ubuntu you can install the required libraries with

```
sudo apt install gcc-multilib
```

Likewise, for the unittest execution, `libasan5` is needed for 32 bit binaries.
On Debian/Ubuntu you can install the required libraries with

```
sudo apt install lib32asan5
```

*/

0 comments on commit 37db22e

Please sign in to comment.