build: add HIPO submodule and respect its updated build system #78
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: C++ CI Testing | |
on: pull_request | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
container: rootproject/root:${{ matrix.version }} | |
strategy: | |
matrix: | |
version: [6.28.12-ubuntu22.04] | |
steps: | |
- name: system dependencies | |
run: | | |
apt -y update | |
apt -y upgrade | |
apt -y install git python3-pip | |
python -m pip install scons meson ninja | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: set env vars | |
run: | | |
echo "CLAS12ROOT=$GITHUB_WORKSPACE" >> $GITHUB_ENV | |
echo "HIPO=$GITHUB_WORKSPACE/hipo" >> $GITHUB_ENV | |
echo "CCDB_HOME=$GITHUB_WORKSPACE/ccdb" >> $GITHUB_ENV | |
echo "RCDB_HOME=$GITHUB_WORKSPACE/rcdb" >> $GITHUB_ENV | |
echo "QADB=$GITHUB_WORKSPACE/clas12-qadb" >> $GITHUB_ENV | |
- name: set paths | |
run: | | |
echo "PYTHONPATH=$CCDB_HOME/python:$RCDB_HOME/python:$PYTHONPATH" >> $GITHUB_ENV | |
echo "PATH=$PWD/bin:$CCDB_HOME:$CCDB_HOME/bin:$RCDB_HOME/bin:$RCDB_HOME/cpp/bin:$PATH" >> $GITHUB_ENV | |
echo "LD_LIBRARY_PATH=$RCDB_HOME/cpp/lib:$CCDB_HOME/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV | |
- name: Create hipo folder | |
run: | | |
mkdir -p $HIPO | |
- name: checkout hipo | |
uses: actions/checkout@v4 | |
with: | |
repository: gavalian/hipo | |
ref: 20094876df040ec234dd376fa527cf58442b775a # if you want to use a fixed tag; remove if you want to use `main` | |
path: hipo_src | |
- name: build hipo | |
run: | | |
meson setup hipo_build --prefix=$HIPO | |
meson install -C hipo_build | |
- name: build ccdb | |
run: | | |
cd $CCDB_HOME | |
source environment.bash | |
python $(which scons) | |
- name: build clas12root | |
run: | | |
./installC12Root | |
- name: run example on data file | |
run: | | |
export CLAS12ROOT=$PWD | |
./bin/clas12root -q ./tests/read_file.C |