1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18124 from miri64/release-tests/fix/install-libasan

release-tests: install libasan as native dependency
This commit is contained in:
Martine Lenders 2022-05-23 12:20:31 +02:00 committed by GitHub
commit 37db22edea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -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: |

View File

@ -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
```
*/