Reduce reset threshold #10
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: | |
pull_request: | |
release: | |
types: [published] | |
push: | |
tags: | |
branches: | |
- main | |
env: | |
CLANG_TIDY_VERSION: "15.0.2" | |
VERBOSE: 1 | |
jobs: | |
Test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- ubuntu-20.04 | |
- windows-2022 | |
- windows-2019 | |
compiler: | |
- gcc-11 | |
- llvm-15.0.2 | |
- msvc | |
generator: | |
- "Ninja Multi-Config" | |
build_type: | |
#- Debug | |
- Release | |
developer_mode: | |
#- ON | |
- OFF | |
exclude: | |
- os: windows-2019 | |
compiler: gcc-11 | |
- os: windows-2019 | |
compiler: msvc | |
- os: ubuntu-20.04 | |
compiler: msvc | |
steps: | |
- name: Check for llvm version mismatches | |
if: ${{ contains(matrix.compiler, 'llvm') && !contains(matrix.compiler, env.CLANG_TIDY_VERSION) }} | |
uses: actions/github-script@v3 | |
with: | |
script: | | |
core.setFailed('There is a mismatch between configured llvm compiler and clang-tidy version chosen') | |
- uses: actions/checkout@v3 | |
- name: Setup Cache | |
uses: ./.github/actions/setup_cache | |
with: | |
compiler: ${{ matrix.compiler }} | |
build_type: ${{ matrix.build_type }} | |
developer_mode: ${{ matrix.developer_mode }} | |
generator: ${{ matrix.generator }} | |
- name: Setup Cpp | |
uses: aminya/setup-cpp@v1 | |
with: | |
compiler: ${{ matrix.compiler }} | |
vcvarsall: ${{ contains(matrix.os, 'windows' )}} | |
cmake: true | |
ninja: true | |
vcpkg: false | |
ccache: true | |
clangtidy: ${{ env.CLANG_TIDY_VERSION }} | |
cppcheck: false | |
gcovr: false | |
opencppcoverage: false | |
- name: Configure CMake | |
run: | | |
cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DENABLE_DEVELOPER_MODE:BOOL=${{matrix.developer_mode}} -Dpsim_ENABLE_COVERAGE:BOOL=${{ matrix.build_type == 'Debug' }} -DGIT_SHA:STRING=${{ github.sha }} | |
- name: Build | |
run: | | |
cmake --build ./build --config ${{matrix.build_type}} | |
- name: CPack | |
if: matrix.package_generator != '' | |
working-directory: ./build | |
run: | | |
cpack -C ${{matrix.build_type}} -G ${{matrix.package_generator}} | |
- name: Publish Tagged Release | |
uses: softprops/action-gh-release@v1 | |
if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.package_generator != '' }} | |
with: | |
files: | | |
build/*-*${{ matrix.build_type }}*-*.* |