Skip to content

Commit 17d1843

Browse files
committed
Merge branch 'development' into updateDCClustering
2 parents 6381e60 + c86a484 commit 17d1843

File tree

217 files changed

+4932
-4910
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+4932
-4910
lines changed

.containers/coatjava.Dockerfile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#syntax=docker/dockerfile:1
2+
3+
FROM ubuntu:noble
4+
5+
LABEL name="coatjava"
6+
LABEL maintainer="Whitney Armstrong <[email protected]>"
7+
LABEL architecture="amd64"
8+
9+
USER root
10+
11+
12+
RUN apt update && apt upgrade -y
13+
RUN apt install cmake vim maven groovy git ca-certificates wget curl python-is-python3 \
14+
openjdk-17-jdk openjdk-17-jre openjdk-17-jdk-headless openjdk-17-jre-headless \
15+
python3-sqlalchemy -y && update-ca-certificates
16+
17+
# CA certificates
18+
ADD https://pki.jlab.org/JLabCA.crt /etc/ssl/certs/JLabCA.crt
19+
#RUN trust anchor --store /image/JLabCA.crt
20+
21+
ARG REF_NAME=development
22+
# build coatjava
23+
RUN java --version && cd /opt && \
24+
git clone https://code.jlab.org/hallb/alert/coatjava.git && cd coatjava && \
25+
git fetch origin && git checkout ${REF_NAME} && ./build-coatjava.sh

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ defaults:
2121
shell: bash
2222

2323
env:
24-
java_version: 11
24+
java_version: 17
2525
java_distribution: zulu
26-
groovy_version: 4.0.3
26+
groovy_version: 4.x
2727

2828
jobs:
2929

.github/workflows/validation.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,17 @@ on:
1010
jobs:
1111
validation:
1212
uses: JeffersonLab/clas12-validation/.github/workflows/ci.yml@main
13+
with:
14+
matrix_evgen: >-
15+
[
16+
"e_p",
17+
"e_n",
18+
"e_g",
19+
"e_pC",
20+
"eFT_K",
21+
"e_gFT"
22+
]
23+
matrix_config: >-
24+
[
25+
"rgb_fall2019"
26+
]

.gitlab-ci.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
workflow:
2+
rules:
3+
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
4+
- if: '$CI_PIPELINE_SOURCE == "web"'
5+
- if: '$CI_PIPELINE_SOURCE == "webide"'
6+
- if: '$CI_COMMIT_BRANCH == "master"'
7+
- if: '$CI_COMMIT_BRANCH == "development"'
8+
- if: '$CI_COMMIT_TAG'
9+
10+
default:
11+
image: ubuntu:noble
12+
retry: 2
13+
14+
coatjava_build:
15+
image: gcr.io/kaniko-project/executor:debug
16+
script:
17+
- echo "${CI_COMMIT_REF_NAME}"
18+
- >-
19+
/kaniko/executor
20+
--context $CI_PROJECT_DIR/docker
21+
--dockerfile $CI_PROJECT_DIR/.containers/coatjava.Dockerfile
22+
--destination $CI_REGISTRY_IMAGE/coatjava:${CI_COMMIT_REF_NAME}
23+
--build-arg REF_NAME=${CI_COMMIT_REF_NAME}
24+
25+
alert_testing:
26+
needs: ["coatjava_build"]
27+
variables:
28+
REF_NAME: "$CI_COMMIT_REF_NAME"
29+
trigger:
30+
project: hallb/alert/c12
31+
strategy: depend
32+
33+
shared_for_alert_tests:
34+
needs: ["coatjava_build"]
35+
variables:
36+
REF_NAME: "$CI_COMMIT_REF_NAME"
37+
trigger:
38+
project: hallb/alert/atof/shared_for_alert
39+
strategy: depend
40+

bin/bg-merger

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
. `dirname $0`/env.sh
3+
. `dirname $0`/../libexec/env.sh
44

55
export MALLOC_ARENA_MAX=1
66

bin/bos2hipo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
. `dirname $0`/env.sh
3+
. `dirname $0`/../libexec/env.sh
44

55
java -Xms1024m -XX:+UseSerialGC \
66
-cp "$CLAS12DIR/lib/clas/*:$CLAS12DIR/lib/plugins/*" \

bin/cvt-compare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
. `dirname $0`/env.sh
3+
. `dirname $0`/../libexec/env.sh
44

55
export MALLOC_ARENA_MAX=1
66

bin/daqEventViewer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
. `dirname $0`/env.sh
3+
. `dirname $0`/../libexec/env.sh
44

55
java -Xms1024m \
66
-cp "$CLAS12DIR/lib/clas/*:$CLAS12DIR/lib/services/*:$CLAS12DIR/lib/utils/*" \

bin/dclayereffs-ana

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
. `dirname $0`/env.sh
3+
. `dirname $0`/../libexec/env.sh
44

55
java -Dsun.java2d.pmoffscreen=false -Xmx2048m -Xms1024m \
66
-cp "$CLAS12DIR/lib/clas/*:$CLAS12DIR/lib/utils/*:$CLAS12DIR/lib/services/*" \

bin/decoder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
. `dirname $0`/env.sh
3+
. `dirname $0`/../libexec/env.sh
44

55
export MALLOC_ARENA_MAX=1
66

0 commit comments

Comments
 (0)