Create github build action to build Mosquitto and added timeout
to python tests waiting for subprocess to avoid github actione being blocked Signed-off-by: Norbert Heusser <norbert.heusser@cedalo.com>pull/2529/head
parent
5731dd8653
commit
306b76d7f6
@ -0,0 +1,28 @@
|
||||
name: Mosquitto - Make
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ develop ]
|
||||
pull_request:
|
||||
branches: [ develop ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
-
|
||||
name: Install third party dependencies
|
||||
run: sudo apt-get install -y debhelper libc-ares-dev libssl-dev libwrap0-dev python-all python3-all xsltproc docbook-xsl libcunit1-dev libjwt-dev libcjson-dev libcjson1
|
||||
-
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: 'true'
|
||||
-
|
||||
name: make
|
||||
run: make
|
||||
-
|
||||
name: make test
|
||||
run: |
|
||||
make test
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue