Make it possible to patch ParticleID meta information when patching collections #128
Workflow file for this run
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: key4hep | |
on: [push, pull_request] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
release: ["sw.hsf.org/key4hep", | |
"sw-nightlies.hsf.org/key4hep"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cvmfs-contrib/github-action-cvmfs@v3 | |
- uses: aidasoft/run-lcg-view@v4 | |
with: | |
container: centos7 | |
view-path: /cvmfs/${{ matrix.release }} | |
run: | | |
mkdir build install | |
cd build | |
cmake -DCMAKE_CXX_STANDARD=20 \ | |
-DBUILD_ROOTDICT=ON \ | |
-DCMAKE_CXX_FLAGS="-fdiagnostics-color=always -Werror " \ | |
-DCMAKE_INSTALL_PREFIX=../install \ | |
.. | |
make -k | |
make install | |
ctest --output-on-failure | |
echo "::group::Test downstream build" | |
cd - | |
export CMAKE_PREFIX_PATH=$PWD/install:$CMAKE_PREFIX_PATH | |
cd tests/downstream-project-cmake-test | |
mkdir build && cd build | |
cmake .. -DCMAKE_CXX_STANDARD=20 | |
make -k |