Федорец Илья - Лабораторная работа №2 #2096
Workflow file for this run
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: | |
| branches: [ main ] | |
| pull_request: | |
| env: | |
| CTEST_EXT_COLOR_OUTPUT: TRUE | |
| CTEST_WITH_SUBMIT: FALSE | |
| jobs: | |
| run_linux: | |
| runs-on: ubuntu-20.04 | |
| name: Linux / Build and Test | |
| strategy: | |
| matrix: | |
| ctest_model: [Coverage, MemCheck, CodeCheck] | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 2 | |
| - name: Install requirements (CodeCheck) | |
| if: matrix.ctest_model == 'CodeCheck' | |
| run: | | |
| sudo apt-get install -y cppcheck | |
| pip install cpplint | |
| - name: Install requirements (MemCheck) | |
| if: matrix.ctest_model == 'MemCheck' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y valgrind | |
| - name: Run tests | |
| env: | |
| CTEST_BUILD_FLAGS: -j2 | |
| CTEST_MODEL: ${{ matrix.ctest_model }} | |
| run: | | |
| ctest -VV -S devtools_test.cmake | |
| # - name: Publish coverage | |
| # if: matrix.ctest_model == 'Coverage' | |
| # uses: codecov/codecov-action@v4 | |
| # with: | |
| # fail_ci_if_error: true | |
| # directory: dashboard/build | |
| # env: | |
| # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| run_win: | |
| runs-on: windows-2022 | |
| name: Windows / Build and Test | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v2 | |
| - name: Run tests | |
| env: | |
| CTEST_TARGET_SYSTEM: "Windows-x64" | |
| CTEST_MODEL: "Experimental" | |
| run: | | |
| ctest -VV -S devtools_test.cmake |