Skip to content

Merge pull request #38 from andreacasalino/BetterMonitorPy #142

Merge pull request #38 from andreacasalino/BetterMonitorPy

Merge pull request #38 from andreacasalino/BetterMonitorPy #142

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
unitTests:
strategy:
matrix:
name: [ubuntu-gcc, ubuntu-clang, windows-VS, macOS]
include:
- name: ubuntu-gcc
os: ubuntu-latest
compiler_opt: "-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++"
build_system: '-G Ninja'
filter: ""
- name: ubuntu-clang
os: ubuntu-latest
compiler_opt: "-DCMAKE_C_COMPILER=clang-17 -DCMAKE_CXX_COMPILER=clang++-17"
build_system: '-G Ninja'
filter: ""
- name: windows-VS
os: windows-latest
compiler_opt: ""
build_system: ""
filter: "robustness"
- name: macOS
os: macos-latest
compiler_opt: "-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++"
build_system: ""
filter: "robustness"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Ninja
if: matrix.build_system == '-G Ninja'
uses: seanmiddleditch/gha-setup-ninja@master
# needed as this project requires c++ 20. Due to this github action bug:
# https://github.com/actions/runner-images/issues/8659
# This actually implements the workaround described here:
# https://github.com/wheremyfoodat/Panda3DS/blob/master/.github/workflows/Linux_Build.yml
- name: Install newer Clang
if: ${{ matrix.name == 'ubuntu-clang' }}
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 17
- name: CMake configure
run: cmake -B./build -DCMAKE_INSTALL_PREFIX:STRING=./artifacts/ -DBUILD_MinimalCppSocket_SAMPLES=OFF -DBUILD_MinimalCppSocket_TESTS=ON -DCMAKE_CONFIGURATION_TYPES="Release" -DCMAKE_BUILD_TYPE:STRING=Release ${{ matrix.compiler_opt }} ${{ matrix.build_system }}
- name: Build
run: cmake --build ./build --config Release
- name: Install
run: cmake --install ./build --config Release
- name: Tests
run: python .github/workflows/runTests.py --bin "./artifacts/bin/MinimalSocket-tests" --priority "open address" --filter "${{ matrix.filter }}"
- uses: actions/upload-artifact@v2
with:
path: artifacts
name: ${{ matrix.name }}