Changes in the processor for timing computation #8
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] | |
include: | |
- COMPILER: gcc8 | |
LCG: 99python2 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cvmfs-contrib/github-action-cvmfs@v2 | |
- uses: aidasoft/run-lcg-view@v3 | |
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 | |
ctest --output-on-failure | |
ninja install |