estimate difference between all sides, visualize plots for sides comp… #42
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build & Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Configure (CMake) | |
| run: cmake -S . -B build -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release | |
| - name: Build | |
| run: cmake --build build --config Release | |
| - name: Test (CTest) | |
| run: ctest --test-dir build -C Release --output-on-failure --no-tests=error -V | |
| - name: Run application | |
| shell: bash | |
| run: | | |
| exe="build/bin/Release/CVPuzzleSolver" | |
| if [[ "$RUNNER_OS" == "Windows" ]]; then exe="${exe}.exe"; fi | |
| "$exe" |