Java Lambda Layer Performance Test Cleanup #3
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 | |
| name: Java Lambda Layer Performance Test Cleanup | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| test_runs: | |
| description: 'Number of test runs to perform' | |
| required: true | |
| default: 20 | |
| type: number | |
| java_version: | |
| description: 'The Java version to run the test' | |
| required: true | |
| default: '17' | |
| type: string | |
| ADOT-Java-Branch: | |
| description: 'ADOT Java branch to use' | |
| required: true | |
| default: 'release/v2.11.x' | |
| type: string | |
| jobs: | |
| java-lambda-layer-performance-test-cleanup: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| env: | |
| NUM_TEST_RUNS: ${{ github.event.inputs.test_runs }} | |
| 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 | |
| - name: Checkout aws-otel-java-instrumentation | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: aws-observability/aws-otel-java-instrumentation | |
| ref: ${{ github.event.inputs.ADOT-Java-Branch }} | |
| path: aws-otel-java-instrumentation | |
| - name: Log branch and commit info | |
| run: | | |
| cd aws-otel-java-instrumentation | |
| echo "ADOT Java Branch: ${{ github.event.inputs.ADOT-Java-Branch }}" | |
| echo "ADOT Java Commit Hash: $(git rev-parse HEAD)" | |
| - name: Setup Terraform | |
| uses: hashicorp/setup-terraform@v2 | |
| - name: Cleanup Terraform Resources | |
| if: success() || failure() || cancelled() | |
| run: | | |
| cd aws-otel-java-instrumentation/sample-apps/apigateway-lambda/terraform | |
| echo "Starting Terraform cleanup..." | |
| terraform init | |
| terraform destroy -auto-approve | |