Merge pull request #39 from alexgiving/atrutnev/ade_windows_ci #30
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-20.04, | |
ubuntu-22.04, | |
windows-2022, | |
] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 }} -G Ninja .. | |
cmake --build . --target GTest | |
cmake --build . | |
elif [ "$RUNNER_OS" == "Linux" ]; then | |
cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.version }} .. | |
make -j | |
else | |
echo "$RUNNER_OS not supported" | |
exit 1 | |
fi | |
- name: ADE-Test Stage | |
shell: bash | |
run: ./build/bin/ade-tests | |
- name: CMN-Test Stage | |
shell: bash | |
run: ./build/bin/common-tests |