Add unix domain socket listener type to man page #411
This file contains hidden or 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-24.04 | |
| friendly: clang | |
| compiler: clang++ | |
| aptpkg: clang | |
| - os: ubuntu-24.04 | |
| friendly: gcc | |
| compiler: g++ | |
| aptpkg: build-essential | |
| - os: ubuntu-22.04 | |
| friendly: clang | |
| compiler: clang++ | |
| aptpkg: clang | |
| - os: ubuntu-22.04 | |
| friendly: gcc | |
| compiler: 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 libcurl4-openssl-dev ${{ matrix.aptpkg }} | |
| # Building | |
| - run: ./run-make-from-ci.sh --compiler "${{ matrix.compiler }}" | |
| - run: ./run-tests-from-ci.sh |