Bump actions/cache from 4.0.2 to 4.1.2 (#75) #66
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-linux | |
on: | |
push: | |
tags-ignore: | |
- v*.* | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [ninja-gcc, ninja-clang, ninja-clang-libcpp] | |
cxx_version: [17, 20] | |
target: [Debug, Release] | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Cache CMake build files | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: build | |
key: ${{ runner.os }}-cmake-${{ matrix.compiler }}-${{ matrix.cxx_version }}-${{ matrix.target }} | |
restore-keys: | | |
${{ runner.os }}-cmake-${{ matrix.compiler }}-${{ matrix.cxx_version }}- | |
${{ runner.os }}-cmake-${{ matrix.compiler }}- | |
- name: install dependencies | |
run: sudo apt install -yqq ninja-build | |
- name: configure cmake | |
run: cmake -S . --preset=${{matrix.compiler}} -B build -DCMAKE_CXX_STANDARD=${{matrix.cxx_version}} | |
- name: build | |
run: cmake --build build --config=${{matrix.target}} | |
test: | |
runs-on: ubuntu-22.04 | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [ninja-gcc, ninja-clang, ninja-clang-libcpp] | |
cxx_version: [17, 20] | |
target: [Debug, Release] | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Cache CMake build files | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: build | |
key: ${{ runner.os }}-cmake-${{ matrix.compiler }}-${{ matrix.cxx_version }}-${{ matrix.target }} | |
- name: test | |
run: cd build && ctest -C ${{matrix.target}} --output-on-failure |