Skip to content

Verify active listeners on reload #14

Verify active listeners on reload

Verify active listeners on reload #14

name: TestingNoSse
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 }}" --extra-config "DEFINES += FMQ_NO_SSE"
- run: ./run-tests-from-ci.sh