Detector Response Tests #2
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: Detector Response Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request_target: | |
branches: ["main"] | |
types: | |
- opened | |
- edited | |
- synchronize | |
workflow_dispatch: | |
jobs: | |
Response-Tests: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/cocoa-hep/cocoa-hep:main | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
ln -s -f /usr/lib64/libGL.so.1 /usr/lib64/libGL.so | |
ln -s -f /usr/lib64/libexpat.so.1 /usr/lib64/libexpat.so | |
for libTag in Xmu ICE Xext X11 Xt SM; do ln -s -f /usr/lib64/lib${libTag}.so.6 /usr/lib64/lib${libTag}.so; done | |
mkdir -p COCOA/build | |
cd COCOA/build | |
cmake .. | |
make -j4 | |
cd .. | |
- name: Hadron Response Test | |
run: | | |
cd COCOA | |
./build/COCOA --config ./config/config_hadron_test.json --seed 1 | |
- name: Neutral Pion Response Test | |
run: | | |
cd COCOA | |
./build/COCOA --config ./config/config_piZero_test.json --seed 1 |