[pre-commit.ci] pre-commit autoupdate #353
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 Clang | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
env: | |
BUILD_TYPE: Release | |
CXX: clang++ | |
CC: clang | |
jobs: | |
job: | |
name: Linux Clang | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Configure | |
run: mkdir build && cd build && cmake -DBUILD_ROOT_INTERFACE=OFF -DBUILD_LCIO_INTERFACE=OFF -DBUILD_RAWDATA_INTERFACE=OFF -DCMAKE_INSTALL_PREFIX=../bin .. | |
- name: Build | |
run: cmake --build build | |
- name: Install | |
run: cmake --install build | |
- name: Test | |
run: ctest -C Debug -VV | |
working-directory: ./build |