-
Notifications
You must be signed in to change notification settings - Fork 26
Adding ATOF Coda Decoder #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
69a292b
Adding ATOF Coda Decoder
c5eeaff
remove new printout in non-ALERT-specific code
baltzell 1eb726f
remove hipo3 additions
baltzell f8e5a2f
rename directory for clarity
baltzell dbb691d
finalize ccdb table name
baltzell ae11d22
Merge branch 'development' into 342-atof-decoder
baltzell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| #syntax=docker/dockerfile:1 | ||
|
|
||
| FROM ubuntu:noble | ||
|
|
||
| LABEL name="coatjava" | ||
| LABEL maintainer="Whitney Armstrong <whit@jlab.org>" | ||
| LABEL architecture="amd64" | ||
|
|
||
| USER root | ||
|
|
||
|
|
||
| RUN apt update && apt upgrade -y | ||
| RUN apt install cmake vim maven groovy git ca-certificates wget curl python-is-python3 \ | ||
| openjdk-17-jdk openjdk-17-jre openjdk-17-jdk-headless openjdk-17-jre-headless \ | ||
| python3-sqlalchemy -y && update-ca-certificates | ||
|
|
||
| # CA certificates | ||
| ADD https://pki.jlab.org/JLabCA.crt /etc/ssl/certs/JLabCA.crt | ||
| #RUN trust anchor --store /image/JLabCA.crt | ||
|
|
||
| ARG REF_NAME=development | ||
| # build coatjava | ||
| RUN java --version && cd /opt && \ | ||
| git clone https://code.jlab.org/hallb/alert/coatjava.git && cd coatjava && \ | ||
| git fetch origin && git checkout ${REF_NAME} && ./build-coatjava.sh --nomaps |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| workflow: | ||
| rules: | ||
| - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' | ||
| - if: '$CI_PIPELINE_SOURCE == "web"' | ||
| - if: '$CI_PIPELINE_SOURCE == "webide"' | ||
| - if: '$CI_COMMIT_BRANCH == "master"' | ||
| - if: '$CI_COMMIT_BRANCH == "development"' | ||
| - if: '$CI_COMMIT_TAG' | ||
|
|
||
| default: | ||
| image: ubuntu:noble | ||
| retry: 2 | ||
|
|
||
| coatjava_build: | ||
| image: gcr.io/kaniko-project/executor:debug | ||
| script: | ||
| - echo "${CI_COMMIT_REF_NAME}" | ||
| - >- | ||
| /kaniko/executor | ||
| --context $CI_PROJECT_DIR/docker | ||
| --dockerfile $CI_PROJECT_DIR/.containers/coatjava.Dockerfile | ||
| --destination $CI_REGISTRY_IMAGE/coatjava:${CI_COMMIT_REF_NAME} | ||
| --build-arg REF_NAME=${CI_COMMIT_REF_NAME} | ||
|
|
||
| alert_testing: | ||
| needs: ["coatjava_build"] | ||
| variables: | ||
| REF_NAME: "$CI_COMMIT_REF_NAME" | ||
| trigger: | ||
| project: hallb/alert/c12 | ||
| strategy: depend |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.