mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-08 08:40:13 +08:00
55 lines
966 B
YAML
55 lines
966 B
YAML
name: Mosquitto - Make
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
- fixes
|
|
- develop
|
|
- release/*
|
|
tags:
|
|
- 'v[0-9]+.*'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- fixes
|
|
- develop
|
|
- release/*
|
|
|
|
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 \
|
|
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
|
|
-
|
|
name: make test
|
|
run: |
|
|
make test
|