No wait on immediate bridge reload #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mosquitto - Make ASAN | |
on: | |
push: | |
branches: | |
- develop | |
- fixes | |
pull_request: | |
branches: | |
- develop | |
- fixes | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install third party dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
clang \ | |
docbook-xsl \ | |
lcov \ | |
libargon2-dev \ | |
libc-ares-dev \ | |
libcjson-dev \ | |
libcjson1 \ | |
libcunit1-dev \ | |
libssl-dev \ | |
libwrap0-dev \ | |
microsocks \ | |
python3-all \ | |
python3-paho-mqtt \ | |
python3-psutil \ | |
uthash-dev \ | |
xsltproc | |
- | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- | |
name: make | |
run: make WITH_ASAN=yes | |
- | |
name: make test | |
run: | | |
make WITH_ASAN=yes test |