Updated R11780_hqe_rev (12"), R11780_hqe (12"), and R7081_hqe (10") PMT Timing based on Berkeley dark box data #44
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: Build RatpacExperiment | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ratpac/ratpac-two:latest-base | |
options: --user root | |
steps: | |
- name: Checkout Ratpac2 | |
uses: actions/checkout@v4 | |
with: | |
path: ratpac2 | |
- name: Checkout RatpacExperiment | |
uses: actions/checkout@v4 | |
with: | |
repository: rat-pac/RatpacExperiment | |
path: ratpacExperiment | |
- name: Build Ratpac2 | |
working-directory: ratpac2 | |
shell: bash | |
run: | | |
source /ratpac-setup/env.sh | |
make -j$(nproc) | |
- name: Build RatpacExperiment | |
working-directory: ratpacExperiment | |
shell: bash | |
run: | | |
source /ratpac-setup/env.sh | |
source ../ratpac2/ratpac.sh | |
make -j$(nproc) |