Skip to content

Commit

Permalink
Comment out E2E Operator Test (#940)
Browse files Browse the repository at this point in the history
*Issue #, if available:*
E2E Operator test is currently failing due to a known issue. We do not
have an immediate plan to fix it so commenting it out for now.

Example failed run:
https://github.com/aws-observability/aws-otel-java-instrumentation/actions/runs/11525535146/job/32241628521

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.
  • Loading branch information
harrryr authored Oct 30, 2024
1 parent d97972b commit e4e5725
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,19 +157,22 @@ jobs:
echo "ref=terraform" >> $GITHUB_OUTPUT
fi
e2e-operator-test:
concurrency:
group: e2e-adot-agent-operator-test
cancel-in-progress: false
needs: [ build, create-test-ref, default-region-output ]
uses: ./.github/workflows/e2e-tests-with-operator.yml
secrets: inherit
with:
aws-region: ${{ needs.default-region-output.outputs.aws_default_region }}
image_tag: ${{ needs.build.outputs.java_agent_tag }}
image_uri: ${{ needs.build.outputs.staging_registry }}/${{ needs.build.outputs.staging_repository }}
test_ref: ${{ needs.create-test-ref.outputs.testRef }}
caller-workflow-name: 'main-build'
# TODO: This test is currently failing due to infrastructure problems. Commented it out because we are ignoring it during release.
# Need to fix in the future. Ex: https://github.com/aws-observability/aws-otel-java-instrumentation/actions/runs/11525535146/job/32241628521

# e2e-operator-test:
# concurrency:
# group: e2e-adot-agent-operator-test
# cancel-in-progress: false
# needs: [ build, create-test-ref, default-region-output ]
# uses: ./.github/workflows/e2e-tests-with-operator.yml
# secrets: inherit
# with:
# aws-region: ${{ needs.default-region-output.outputs.aws_default_region }}
# image_tag: ${{ needs.build.outputs.java_agent_tag }}
# image_uri: ${{ needs.build.outputs.staging_registry }}/${{ needs.build.outputs.staging_repository }}
# test_ref: ${{ needs.create-test-ref.outputs.testRef }}
# caller-workflow-name: 'main-build'

# E2E tests where SampleApp has Java Agent
e2e-test:
Expand Down

0 comments on commit e4e5725

Please sign in to comment.