Yield lock while collecting retained messages to save #229
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: Testing | |
on: [push] | |
jobs: | |
compilation: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
friendly: clang | |
SPEC: linux-clang | |
aptpkg: clang | |
- os: ubuntu-22.04 | |
friendly: gcc | |
SPEC: linux-g++ | |
aptpkg: build-essential | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: FlashMQTests | |
name: "${{ matrix.friendly }}" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- run: sudo apt update | |
# Build prerequisites | |
- run: sudo apt install -y cmake libssl-dev qtbase5-dev libcurl4-openssl-dev ${{ matrix.aptpkg }} | |
# Building | |
- run: ./run-make-from-ci.sh --spec "${{ matrix.SPEC }}" | |
- run: ./run-tests-from-ci.sh |