Skip to content

Bump actions/cache from 3.3.3 to 4.0.2 (#57) #18

Bump actions/cache from 3.3.3 to 4.0.2 (#57)

Bump actions/cache from 3.3.3 to 4.0.2 (#57) #18

Workflow file for this run

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@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Cache CMake build files
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.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@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Cache CMake build files
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.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