update workflow #111
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 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 Development Build | |
on: | |
push: | |
branches: [ "dev" ] | |
jobs: | |
dev-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GCM | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Get Taskit Version | |
run: | | |
echo "taskit_version=v$(mvn help:evaluate -Dexpression=taskit.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV" | |
- 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.taskit_version, 'SNAPSHOT') }} | |
run: | | |
echo "util_version=v$(mvn help:evaluate -Dexpression=util.version -q -DforceStdout --file taskit/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 Taskit | |
if: ${{ endsWith(env.taskit_version, 'SNAPSHOT') }} | |
run: mvn clean install -DskipTests --file taskit/pom.xml | |
- name: Build GCM | |
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 |