From ba05cfaa1abd64ce5881cafe41507040c97ec918 Mon Sep 17 00:00:00 2001 From: Nathan Brei Date: Wed, 1 May 2024 22:26:21 -0400 Subject: [PATCH] Fix missing plugin path in CI script --- .github/workflows/ccpp-docker.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ccpp-docker.yml b/.github/workflows/ccpp-docker.yml index 1f9b3aac1..204d7a572 100644 --- a/.github/workflows/ccpp-docker.yml +++ b/.github/workflows/ccpp-docker.yml @@ -40,20 +40,23 @@ jobs: make install - name: JTest run: | - export JANA_PLUGIN_PATH=$GITHUB_WORKSPACE/Linux/plugins echo "--- Running JTest plugin -----------------------" + export JANA_PLUGIN_PATH=$GITHUB_WORKSPACE/Linux/plugins $GITHUB_WORKSPACE/Linux/bin/jana -PPLUGINS=JTest -Pjana:nevents=100 - name: jana-unit-tests run: | echo "--- Running jana-unit-tests ------------------------------" + export JANA_PLUGIN_PATH=$GITHUB_WORKSPACE/Linux/plugins $GITHUB_WORKSPACE/Linux/bin/jana-unit-tests - name: TimesliceExample with simple (physics event) topology run: | echo "--- Running TimesliceExample with simple topology ------------------------------" + export JANA_PLUGIN_PATH=$GITHUB_WORKSPACE/Linux/plugins $GITHUB_WORKSPACE/Linux/bin/jana -Pplugins=TimesliceExample -Pjana:nevents=100 events.root - name: TimesliceExample with complex (timeslice) topology run: | echo "--- Running TimesliceExample with complex topology ------------------------------" + export JANA_PLUGIN_PATH=$GITHUB_WORKSPACE/Linux/plugins $GITHUB_WORKSPACE/Linux/bin/jana -Pplugins=TimesliceExample -Pjana:nevents=100 timeslices.root