misra: Removed some rules from getCppcheckRules() because those do no… #23
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
| # Some convenient links: | |
| # - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md | |
| # | |
| name: CI-cygwin | |
| on: [push,pull_request] | |
| defaults: | |
| run: | |
| shell: cmd | |
| jobs: | |
| build_cygwin: | |
| strategy: | |
| matrix: | |
| os: [windows-2019] | |
| arch: [x64, x86] | |
| fail-fast: true | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Cygwin | |
| uses: egor-tensin/setup-cygwin@v3 | |
| with: | |
| platform: ${{ matrix.arch }} | |
| - name: Build cppcheck | |
| run: | | |
| C:\tools\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make -j2 | |
| - name: Build test | |
| run: | | |
| C:\tools\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make -j2 testrunner | |
| - name: Run test | |
| run: | | |
| C:\tools\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make -j2 check |