Bump actions/checkout from 6 to 7 #183
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: Linux | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: linux-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name != 'push' }} | |
| env: | |
| TZ: Europe/Berlin | |
| defaults: | |
| run: | |
| shell: bash -Eexuo pipefail {0} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: ${{ matrix.compiler }} ${{ matrix.cereal == '1' && 'cereal' || '' }} | |
| if: github.repository_owner == 'xxsds' || github.event_name == 'workflow_dispatch' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| compiler: ["clang-latest", "clang-second-latest", "clang-third-latest", "gcc-latest", "gcc-second-latest", "gcc-third-latest", "intel"] | |
| cereal: ["0", "1"] | |
| include: | |
| - compiler: "intel" | |
| cxx_flags: "-fp-model=strict -Wno-overriding-option" | |
| container: | |
| image: ghcr.io/seqan/${{ matrix.compiler }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: true | |
| - name: Setup cache | |
| uses: seqan/actions/setup-actions-cache@main | |
| - name: Configure tests | |
| run: | | |
| mkdir ci_build && cd ci_build | |
| cmake .. -DCMAKE_BUILD_TYPE=Release \ | |
| -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
| -DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |
| -DCMAKE_CXX_FLAGS="-pedantic -Wall -Wextra -Werror ${{ matrix.cxx_flags }}" \ | |
| -DCMAKE_CXX_STANDARD=23 \ | |
| -DSDSL_CEREAL=${{ matrix.cereal }} | |
| make gtest_build | |
| - name: Build tests | |
| working-directory: ci_build | |
| run: | | |
| ccache -z | |
| make -k sdsl_test_targets sdsl_examples sdsl_tutorials | |
| ccache -svvx | |
| - name: Run tests | |
| working-directory: ci_build | |
| run: ctest . -j --output-on-failure --no-tests=error |