Skip to content

Java ECS Enablement Canary Testing #556

Java ECS Enablement Canary Testing

Java ECS Enablement Canary Testing #556

## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
## SPDX-License-Identifier: Apache-2.0
## This workflow aims to run the Application Signals Java end-to-end tests as a canary to
## test the artifacts for Application Signals enablement. It will deploy a sample app onto an ECS cluster,
## call the APIs, and validate the generated telemetry, including logs, metrics, and traces.
name: Java ECS Enablement Canary Testing
on:
schedule:
- cron: '0,25 * * * *' # run the workflow at 0th and 25th minute of every hour
workflow_dispatch: # be able to run the workflow on demand
permissions:
id-token: write
contents: read
jobs:
ecs:
strategy:
fail-fast: false
matrix:
aws-region: ['us-east-1']
uses: ./.github/workflows/java-ecs-retry.yml
secrets: inherit
with:
aws-region: ${{ matrix.aws-region }}
caller-workflow-name: 'appsignals-e2e-java-ecs-canary-test'
java-version: '11'