Add hit_fromTau variable to mark pixel hits from a particle produced … #84
This file contains hidden or 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: CI - Build Check | |
| on: | |
| push: | |
| # branches: [ bewilson/ci-cd/ ] | |
| pull_request: | |
| # branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: benw22022/faser:el9-cvmfs | |
| options: '--privileged --user root' | |
| steps: | |
| - name: Start CVMFS | |
| run: | | |
| sudo mount -t cvmfs atlas.cern.ch /cvmfs/atlas.cern.ch | |
| sudo mount -t cvmfs atlas-condb.cern.ch /cvmfs/atlas-condb.cern.ch | |
| sudo mount -t cvmfs atlas-nightlies.cern.ch /cvmfs/atlas-nightlies.cern.ch | |
| sudo mount -t cvmfs grid.cern.ch /cvmfs/grid.cern.ch | |
| sudo mount -t cvmfs sft-nightlies.cern.ch /cvmfs/sft-nightlies.cern.ch | |
| sudo mount -t cvmfs sft.cern.ch /cvmfs/sft.cern.ch | |
| sudo mount -t cvmfs unpacked.cern.ch /cvmfs/unpacked.cern.ch | |
| sudo mount -t cvmfs geant4.cern.ch /cvmfs/geant4.cern.ch | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Configure and build | |
| run: | | |
| source Pinpoint/setup.sh | |
| mkdir -p build | |
| cd build | |
| cmake ../Pinpoint | |
| make -j$(nproc) |