Workflow file for this run
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
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
## SPDX-License-Identifier: Apache-2.0 | |
# This workflow is for building and uploading the Java sample application to ECR. | |
# Java 11 will be built and uploaded to all regions to be used by the canary while | |
# other versions (8, 17, 21, 22) will be uploaded to us-east-1 for the purpose of | |
# testing ADOT Java | |
name: Sample App Deployment - Java ECR | |
on: | |
push: | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
E2E_TEST_ACCOUNT_ID: ${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ACCOUNT_ID }} | |
E2E_TEST_ROLE_NAME: ${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ROLE_NAME }} | |
jobs: | |
java-main: | |
strategy: | |
fail-fast: false | |
matrix: | |
java-version: [ '22' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java-version }} | |
check-latest: true | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ env.E2E_TEST_ACCOUNT_ID }}:role/${{ env.E2E_TEST_ROLE_NAME }} | |
aws-region: us-east-1 | |
- name: Retrieve account | |
uses: aws-actions/aws-secretsmanager-get-secrets@v2 | |
with: | |
secret-ids: | | |
JAVA_MAIN_SAMPLE_APP_IMAGE, e2e-test/java-main-sample-app-image | |
- name: Build and Upload Main Service Image | |
working-directory: sample-apps/java/springboot-main-service | |
run: | | |
if [ "${{ matrix.java-version }}" = "22" ]; then | |
sed -i 's/id("org.springframework.boot")/id("org.springframework.boot") version "3.3.4"/' build.gradle.kts | |
cat build.gradle.kts | |
fi | |
sed -i 's#"{{ECR_IMAGE_URI}}"#"${{ env.E2E_TEST_ACCOUNT_ID }}.dkr.ecr.us-east-1.amazonaws.com/${{ env.JAVA_MAIN_SAMPLE_APP_IMAGE }}:v${{ matrix.java-version }}"#g' build.gradle.kts | |
gradle jib -P javaVersion=${{ matrix.java-version }} | |
java-remote: | |
strategy: | |
fail-fast: false | |
matrix: | |
java-version: [ '22' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java-version }} | |
check-latest: true | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ env.E2E_TEST_ACCOUNT_ID }}:role/${{ env.E2E_TEST_ROLE_NAME }} | |
aws-region: us-east-1 | |
- name: Retrieve account | |
uses: aws-actions/aws-secretsmanager-get-secrets@v2 | |
with: | |
secret-ids: | | |
JAVA_REMOTE_SAMPLE_APP_IMAGE, e2e-test/java-remote-sample-app-image | |
- name: Build and Upload Remote Service Image | |
working-directory: sample-apps/java/springboot-remote-service | |
run: | | |
if [ "${{ matrix.java-version }}" = "22" ]; then | |
sed -i 's/id("org.springframework.boot")/id("org.springframework.boot") version "3.3.4"/' build.gradle.kts | |
cat build.gradle.kts | |
fi | |
sed -i 's#"{{ECR_IMAGE_URI}}"#"${{ env.E2E_TEST_ACCOUNT_ID }}.dkr.ecr.us-east-1.amazonaws.com/${{ env.JAVA_REMOTE_SAMPLE_APP_IMAGE }}:v${{ matrix.java-version }}"#g' build.gradle.kts | |
gradle jib -P javaVersion=${{ matrix.java-version }} |