CMake: Install detector XML files in share/k4geo instead of additiona… #157
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: linux | |
on: [push, pull_request] | |
jobs: | |
centos7: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
COMPILER: [gcc10, clang11] | |
LCG: [100] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cvmfs-contrib/github-action-cvmfs@v3 | |
- uses: aidasoft/run-lcg-view@v4 | |
with: | |
view-path: "/cvmfs/clicdp.cern.ch/iLCSoft/lcg/${{ matrix.LCG }}/nightly/x86_64-centos7-${{ matrix.COMPILER }}-opt" | |
setup-script: "init_ilcsoft.sh" | |
run: | | |
mkdir build | |
cd build | |
cmake -GNinja -C ${ILCSOFT}/ILCSoft.cmake -DCMAKE_CXX_FLAGS=" -fdiagnostics-color=always " .. | |
ninja -k0 | |
ninja install | |
ctest --output-on-failure |