-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from HHS/update-gcm-to-4.2.1
Update gcm to 4.2.1
- Loading branch information
Showing
21 changed files
with
245 additions
and
53 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | ||
|
||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: GCM Taskit Development PR Build | ||
|
||
on: | ||
pull_request: | ||
branches-ignore: [ "main" ] | ||
|
||
jobs: | ||
dev-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout GCM Taskit | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: maven | ||
|
||
- name: Get GCM and Taskit Version | ||
run: | | ||
echo "gcm_version=v$(mvn help:evaluate -Dexpression=gcm.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV" | ||
echo "taskit_version=v$(mvn help:evaluate -Dexpression=taskit.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV" | ||
- name: Checkout GCM | ||
if: ${{ endsWith(env.gcm_version, 'SNAPSHOT') }} | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: HHS/ASPR-8 | ||
path: gcm | ||
ref: dev | ||
|
||
- name: Checkout Taskit | ||
if: ${{ endsWith(env.taskit_version, 'SNAPSHOT') }} | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: HHS/ASPR-ms-taskit | ||
path: taskit | ||
ref: dev | ||
|
||
- name: Get Util Version | ||
if: ${{ endsWith(env.gcm_version, 'SNAPSHOT') }} | ||
run: | | ||
echo "util_version=v$(mvn help:evaluate -Dexpression=util.version -q -DforceStdout --file gcm/pom.xml)" >> "$GITHUB_ENV" | ||
- name: Checkout Util | ||
if: ${{ endsWith(env.util_version, 'SNAPSHOT') }} | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: HHS/ASPR-ms-util | ||
path: util | ||
ref: dev | ||
|
||
- name: Build Util | ||
if: ${{ endsWith(env.util_version, 'SNAPSHOT') }} | ||
run: mvn clean install -DskipTests --file util/pom.xml | ||
|
||
- name: Build GCM | ||
if: ${{ endsWith(env.gcm_version, 'SNAPSHOT') }} | ||
run: mvn clean install -DskipTests --file gcm/simulation/pom.xml | ||
|
||
- name: Build Taskit | ||
if: ${{ endsWith(env.taskit_version, 'SNAPSHOT') }} | ||
run: mvn clean install -DskipTests --file taskit/pom.xml | ||
|
||
- name: Build GCM Taskit | ||
run: mvn clean install --file pom.xml | ||
|
||
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | ||
# - name: Update dependency graph | ||
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 |
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
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
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
38 changes: 38 additions & 0 deletions
38
...uf/plugins/stochastics/translationSpecs/SimpleRandomNumberGeneratorIdTranslationSpec.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package gov.hhs.aspr.ms.gcm.taskit.protobuf.plugins.stochastics.translationSpecs; | ||
|
||
import gov.hhs.aspr.ms.gcm.simulation.plugins.reports.support.SimpleReportLabel; | ||
import gov.hhs.aspr.ms.gcm.simulation.plugins.stochastics.support.SimpleRandomNumberGeneratorId; | ||
import gov.hhs.aspr.ms.gcm.taskit.protobuf.plugins.reports.support.input.SimpleReportLabelInput; | ||
import gov.hhs.aspr.ms.gcm.taskit.protobuf.plugins.stochastics.support.input.SimpleRandomNumberGeneratorIdInput; | ||
import gov.hhs.aspr.ms.taskit.protobuf.ProtobufTranslationSpec; | ||
|
||
/** | ||
* TranslationSpec that defines how to convert between | ||
* {@linkplain SimpleReportLabelInput} and {@linkplain SimpleReportLabel} | ||
*/ | ||
public class SimpleRandomNumberGeneratorIdTranslationSpec | ||
extends ProtobufTranslationSpec<SimpleRandomNumberGeneratorIdInput, SimpleRandomNumberGeneratorId> { | ||
|
||
@Override | ||
protected SimpleRandomNumberGeneratorId convertInputObject(SimpleRandomNumberGeneratorIdInput inputObject) { | ||
return new SimpleRandomNumberGeneratorId(this.translationEngine.getObjectFromAny(inputObject.getValue())); | ||
} | ||
|
||
@Override | ||
protected SimpleRandomNumberGeneratorIdInput convertAppObject(SimpleRandomNumberGeneratorId appObject) { | ||
return SimpleRandomNumberGeneratorIdInput.newBuilder() | ||
.setValue(this.translationEngine.getAnyFromObject(appObject.getValue())) | ||
.build(); | ||
} | ||
|
||
@Override | ||
public Class<SimpleRandomNumberGeneratorId> getAppObjectClass() { | ||
return SimpleRandomNumberGeneratorId.class; | ||
} | ||
|
||
@Override | ||
public Class<SimpleRandomNumberGeneratorIdInput> getInputObjectClass() { | ||
return SimpleRandomNumberGeneratorIdInput.class; | ||
} | ||
|
||
} |
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
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
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
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
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
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
Oops, something went wrong.