You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
755 B
YAML
45 lines
755 B
YAML
name: Mosquitto - Make
|
|
|
|
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 \
|
|
docbook-xsl \
|
|
libc-ares-dev \
|
|
libcjson-dev \
|
|
libcjson1 \
|
|
libcunit1-dev \
|
|
libssl-dev \
|
|
libwrap0-dev \
|
|
microsocks \
|
|
python-all \
|
|
python3-all \
|
|
xsltproc
|
|
-
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'true'
|
|
-
|
|
name: make
|
|
run: make
|
|
-
|
|
name: make test
|
|
run: |
|
|
make test
|