-
Notifications
You must be signed in to change notification settings - Fork 56
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 #837 from aws-observability/1323-branch
Prepare Release/v1.32.3
- Loading branch information
Showing
26 changed files
with
1,037 additions
and
825 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
## SPDX-License-Identifier: Apache-2.0 | ||
|
||
# This is a reusable workflow for running the E2E test for Application Signals. | ||
# It is meant to be called from another workflow. | ||
# Read more about reusable workflows: https://docs.github.com/en/actions/using-workflows/reusing-workflows#overview | ||
name: E2E Testing | ||
on: | ||
workflow_call: | ||
inputs: | ||
adot-image-name: | ||
required: true | ||
type: string | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ inputs.aws-region }}' | ||
cancel-in-progress: false | ||
|
||
|
||
jobs: | ||
upload-main-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: arn:aws:iam::${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ACCOUNT_ID }}:role/${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ROLE_NAME }} | ||
aws-region: us-east-1 | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: aws-opentelemetry-agent.jar | ||
|
||
- name: Upload main-build adot.jar to s3 | ||
run: aws s3 cp ./aws-opentelemetry-agent-*-SNAPSHOT.jar s3://adot-main-build-staging-jar/aws-opentelemetry-agent.jar | ||
|
||
java-ec2-default-e2e-test: | ||
needs: [ upload-main-build ] | ||
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/java-ec2-default-e2e-test.yml@consolidate-release | ||
secrets: inherit | ||
with: | ||
aws-region: us-east-1 | ||
caller-workflow-name: 'main-build' | ||
|
||
java-ec2-asg-e2e-test: | ||
needs: [ upload-main-build ] | ||
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/java-ec2-asg-e2e-test.yml@consolidate-release | ||
secrets: inherit | ||
with: | ||
aws-region: us-east-1 | ||
caller-workflow-name: 'main-build' | ||
|
||
java-eks-e2e-test: | ||
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/java-eks-e2e-test.yml@consolidate-release | ||
secrets: inherit | ||
with: | ||
aws-region: us-east-1 | ||
test-cluster-name: 'e2e-adot-test' | ||
adot-image-name: ${{ inputs.adot-image-name }} | ||
caller-workflow-name: 'main-build' | ||
|
||
java-metric-limiter-e2e-test: | ||
needs: [ java-eks-e2e-test ] | ||
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/java-eks-e2e-test.yml@consolidate-release | ||
secrets: inherit | ||
with: | ||
aws-region: us-east-1 | ||
test-cluster-name: 'e2e-adot-test' | ||
adot-image-name: ${{ inputs.adot-image-name }} | ||
caller-workflow-name: 'main-build' | ||
|
||
java-k8s-e2e-test: | ||
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/java-k8s-e2e-test.yml@consolidate-release | ||
secrets: inherit | ||
with: | ||
aws-region: us-east-1 | ||
adot-image-name: ${{ inputs.adot-image-name }} | ||
caller-workflow-name: 'main-build' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.