CI: add ubuntu 24, upgrade checkout action, limit make threads #46
Workflow file for this run
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: CI | |
on: [push, pull_request, workflow_dispatch] | |
env: | |
repo_name: ${{ github.repository }} | |
sha_git: ${{ github.sha }} | |
jobs: | |
Basic_Workflow: | |
strategy: | |
matrix: | |
version: [11, 14, 17, 20, 23] | |
os: [ | |
ubuntu-22.04, | |
ubuntu-24.04, | |
windows-2022, | |
] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Stage | |
shell: bash | |
run: | | |
mkdir build && cd build | |
if [ "$RUNNER_OS" == "Windows" ]; then | |
cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.version }} .. | |
cmake --build . --target GTest --config Release | |
cmake --build . --config Release | |
elif [ "$RUNNER_OS" == "Linux" ]; then | |
cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.version }} .. | |
make -j2 | |
else | |
echo "$RUNNER_OS not supported" | |
exit 1 | |
fi | |
- name: Test Stage | |
shell: bash | |
run: cd build && ctest -C Release |