-
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.
- Loading branch information
ADOT Patch workflow
committed
Jan 10, 2024
1 parent
59aa18a
commit 60248e0
Showing
1 changed file
with
24 additions
and
0 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,24 @@ | ||
## This workflow aims to run the Application Signals end-to-end tests to test changes | ||
## on the E2E testing resources before submitting a PR. The e2e-eks-test will deploy a | ||
## sample app on an EKS cluster, call the APIs, and validate the generated telemetry | ||
## including logs, metrics, and traces while the e2e-ec2-test will do the same but on | ||
## two EC2 instances. | ||
name: Test | ||
on: | ||
push: | ||
|
||
jobs: | ||
e2e-eks-test: | ||
uses: ./.github/workflows/appsignals-e2e-eks-test.yml | ||
secrets: inherit | ||
with: | ||
aws-region: us-east-1 | ||
test-cluster-name: 'e2e-test-playground' | ||
caller-workflow-name: 'test' | ||
|
||
e2e-ec2-test: | ||
uses: ./.github/workflows/appsignals-e2e-ec2-test.yml | ||
secrets: inherit | ||
with: | ||
aws-region: us-east-1 | ||
caller-workflow-name: 'test' |