-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
37 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
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 |
---|---|---|
@@ -1,39 +1,39 @@ | ||
# ## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# ## SPDX-License-Identifier: Apache-2.0 | ||
## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
## SPDX-License-Identifier: Apache-2.0 | ||
|
||
# ## This workflow aims to run the Application Signals end-to-end tests as a canary to | ||
# ## test the artifacts for App Signals enablement. It will deploy a sample app and remote | ||
# ## service on two EC2 instances, call the APIs, and validate the generated telemetry, | ||
# ## including logs, metrics, and traces. | ||
# name: Test | ||
# on: | ||
# push: | ||
## This workflow aims to run the Application Signals end-to-end tests as a canary to | ||
## test the artifacts for App Signals enablement. It will deploy a sample app and remote | ||
## service on two EC2 instances, call the APIs, and validate the generated telemetry, | ||
## including logs, metrics, and traces. | ||
name: Test | ||
on: | ||
push: | ||
|
||
# permissions: | ||
# id-token: write | ||
# contents: read | ||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
# jobs: | ||
# e2e-eks-test-1: | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# aws-region: ['us-east-1'] | ||
# uses: ./.github/workflows/java-eks-test.yml | ||
# secrets: inherit | ||
# with: | ||
# aws-region: ${{ matrix.aws-region }} | ||
# test-cluster-name: 'e2e-playground' | ||
# caller-workflow-name: "test" | ||
# e2e-eks-test-2: | ||
# needs: [e2e-eks-test-1] | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# aws-region: ['us-east-1'] | ||
# uses: ./.github/workflows/python-eks-test.yml | ||
# secrets: inherit | ||
# with: | ||
# aws-region: ${{ matrix.aws-region }} | ||
# test-cluster-name: 'e2e-playground' | ||
# caller-workflow-name: "test" | ||
jobs: | ||
e2e-eks-test-1: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
aws-region: ['us-east-1'] | ||
uses: ./.github/workflows/java-eks-otlp-ocb-test.yml | ||
secrets: inherit | ||
with: | ||
aws-region: ${{ matrix.aws-region }} | ||
test-cluster-name: 'e2e-playground' | ||
caller-workflow-name: "test" | ||
# e2e-eks-test-2: | ||
# needs: [e2e-eks-test-1] | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# aws-region: ['us-east-1'] | ||
# uses: ./.github/workflows/python-eks-test.yml | ||
# secrets: inherit | ||
# with: | ||
# aws-region: ${{ matrix.aws-region }} | ||
# test-cluster-name: 'e2e-playground' | ||
# caller-workflow-name: "test" |