[pre-commit.ci] pre-commit autoupdate #204
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: 'Linux GCC' | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '!docs/**' | |
- '!.github/workflows/**' | |
- '.github/workflows/Linux-GCC.yml' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { icon: 'π©', cc: gcc-9, cxx: g++-9, name: 'GCC 9' } | |
- { icon: 'π₯', cc: gcc-10, cxx: g++-10, name: 'GCC 10' } | |
name: 'π§ ${{ matrix.icon }} ${{ matrix.name }}' | |
steps: | |
- name: 'π§° Add toolchains' | |
run: sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && sudo apt-get update | |
- name: 'π§° Checkout' | |
uses: actions/checkout@v3 | |
- name: 'π₯ Load .env file' | |
if: hashFiles('.github/workflows/.env') != '' | |
uses: xom9ikk/dotenv@v2 | |
with: | |
path: .github/workflows | |
- name: '${{ matrix.icon }} Setup CMake' | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '${{env.CMAKE_VERSION}}' | |
github-api-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: '${{ matrix.icon }} Install ${{ matrix.cc }}' | |
run: sudo apt-get install ${{ matrix.cc }} | |
- name: '${{ matrix.icon }} Install packages' | |
if: ${{ env.INSTALL_PACKAGES != '' }} | |
run: sudo apt-get install ${{env.INSTALL_PACKAGES}} | |
- name: 'π§ Configure' | |
env: | |
CC: ${{matrix.cc}} | |
CXX: ${{matrix.cxx}} | |
run: cmake -S . -B ${{ env.CMAKE_BUILD_PREFIX }} -D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -DBUILD_TESTS=${{ env.BUILD_TESTS }} -DBUILD_DOCS=${{ env.BUILD_DOCS }} -DBUILD_EXAMPLES=${{ env.BUILD_EXAMPLES }} | |
- name: 'βοΈ Build' | |
run: cmake --build ${{ env.CMAKE_BUILD_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }} --parallel ${{ env.CMAKE_NUMBER_JOBS }} | |
- name: 'π§ͺ Run tests' | |
working-directory: ${{ env.CMAKE_BUILD_PREFIX }} | |
run: ctest -C ${{ env.CMAKE_BUILD_TYPE }} --parallel ${{ env.CMAKE_NUMBER_JOBS_TESTS }} -VV --output-on-failure |