Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/jana_build.sh → .../build_and_run_gluex_integration_tests.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#!/bin/bash
echo "mounting cvmfs"
echo "Mounting CVMFS"
yum -y install fuse
chmod 666 /dev/fuse
mkdir -p /cvmfs/oasis.opensciencegrid.org
mount -t cvmfs oasis.opensciencegrid.org /cvmfs/oasis.opensciencegrid.org
ln -s /cvmfs/oasis.opensciencegrid.org/gluex/group /group

export CC=$(which gcc)
export CXX=$(which g++)
Expand All @@ -15,12 +16,15 @@ export JANA_PLUGIN_PATH=$PROJECT_ROOT/JANA2/plugins
source $BUILD_SCRIPTS/gluex_env_boot_jlab.sh --bs $BUILD_SCRIPTS
gxenv $PROJECT_ROOT/JANA2/.github/version.xml

echo "jana_home value: $JANA_HOME"
echo "Building JANA2 with JANA_HOME=$JANA_HOME"

cd $JANA_HOME
mkdir -p build
cd build

echo "Building start"
cmake3 $JANA_HOME -DUSE_XERCES=1 -DCMAKE_CXX_STANDARD=17
cmake3 $JANA_HOME -DUSE_XERCES=1 -DCMAKE_CXX_STANDARD=20
make install -j12

echo "ROOTSYS=$ROOTSYS"
cd /workspace/halld_recon/src
scons install -j6 DEBUG=1 OPTIMIZATION=0 SHOWBUILD=1

15 changes: 0 additions & 15 deletions .github/halld_recon_build.sh

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Documentation generation
name: Build documentation

on:
push:
Expand Down
54 changes: 0 additions & 54 deletions .github/workflows/ccpp-epscimac.yml

This file was deleted.

55 changes: 0 additions & 55 deletions .github/workflows/halld_recon.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C/C++ CI docker
name: Dependency matrix tests

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: eic-shell
name: Integration tests - ePIC

on:
push:
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/test_integration_gluex.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Integration tests - GlueX

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
jana2_halld_recon:
name: halld_recon
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
path: JANA2

- name: Clone halld_recon
run: |
mkdir halld_recon
cd halld_recon
git clone -b master https://github.com/JeffersonLab/halld_recon.git .

- name: Build halld_recon
run: |
docker run --rm \
--privileged \
--mount type=bind,source=${{ github.workspace }},target=/workspace \
codecr.jlab.org/nbrei/jana2-ci/jana2_devenv_alma9:latest /workspace/JANA2/.github/build_and_run_gluex_integration_tests.sh




Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CUDA CI farm
name: Platform tests - Farm+CUDA

# disable this one by naming an invalid branch
on:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C/C++ CI macOS-latest
name: Platform tests - macOS

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C/C++ CI ubuntu
name: Platform tests - Ubuntu

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-gitlab.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: trigger-gitlab
name: Trigger GitLab
on:
push:
branches: [master]
Expand Down
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
![C/C++ CI ubuntu](https://github.com/JeffersonLab/JANA2/actions/workflows/ccpp-linux.yml/badge.svg)<br>
![C/C++ CI docker](https://github.com/JeffersonLab/JANA2/actions/workflows/ccpp-docker.yml/badge.svg)<br>
![C/C++ CI macos](https://github.com/JeffersonLab/JANA2/actions/workflows/ccpp-macos.yml/badge.svg)<br>
![C/C++ CI cuda-ifarm](https://github.com/JeffersonLab/JANA2/actions/workflows/cuda-farm.yml/badge.svg)<br>


![Dependency matrix tests](https://github.com/JeffersonLab/JANA2/actions/workflows/test_dependency_matrix.yml/badge.svg)

<br>

![ePIC integration tests](https://github.com/JeffersonLab/JANA2/actions/workflows/test_integration_epic.yml/badge.svg)

<br>

![GlueX integration tests](https://github.com/JeffersonLab/JANA2/actions/workflows/test_integration_gluex.yml/badge.svg)
<br>

[![DOI](https://zenodo.org/badge/117695469.svg)](https://zenodo.org/badge/latestdoi/117695469)
## Welcome to JANA!

JANA is a C++ framework for multi-threaded HENP (High Energy and Nuclear Physics) event reconstruction.
JANA is a C++ framework for multi-threaded HENP (High Energy and Nuclear Physics) event reconstruction.
Please see the [JANA website](https://jeffersonlab.github.io/JANA2/) for full documentation.

JANA2 is a complete rewrite retaining successful features from the original while modernizing the framework for a new generation of experiments. The code is under active development, but is ready for use as is. You are welcome to
Expand Down
Loading