Skip to content

Workflow file for this run

## Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
## SPDX-License-Identifier: Apache-2.0
## This workflow aims to run the Application Signals Python end-to-end tests as a canary to
## test the artifacts for Application Signals enablement. It will deploy a sample app and remote
## service onto an EKS cluster, call the APIs, and validate the generated telemetry,
## including logs, metrics, and traces.
name: Python EKS Enablement Canary Testing
on:
push:
permissions:
id-token: write
contents: read
jobs:
eks-8:
strategy:
fail-fast: false
matrix:
aws-region: ['us-east-1']
uses: ./.github/workflows/python-eks-retry.yml
secrets: inherit
with:
aws-region: ${{ matrix.aws-region }}
test-cluster-name: 'e2e-canary-test'
caller-workflow-name: 'appsignals-python-e2e-eks-canary-test'
python-version: '3.8'
eks-9:
needs: eks-8
strategy:
fail-fast: false
matrix:
aws-region: ['us-east-1']
uses: ./.github/workflows/python-eks-retry.yml
secrets: inherit
with:
aws-region: ${{ matrix.aws-region }}
test-cluster-name: 'e2e-canary-test'
caller-workflow-name: 'appsignals-python-e2e-eks-canary-test'
python-version: '3.9'
eks-10:
needs: eks-9
strategy:
fail-fast: false
matrix:
aws-region: [ 'us-east-1' ]
uses: ./.github/workflows/python-eks-retry.yml
secrets: inherit
with:
aws-region: ${{ matrix.aws-region }}
test-cluster-name: 'e2e-canary-test'
caller-workflow-name: 'appsignals-python-e2e-eks-canary-test'
python-version: '3.10'
eks-11:
needs: eks-10
strategy:
fail-fast: false
matrix:
aws-region: [ 'us-east-1' ]
uses: ./.github/workflows/python-eks-retry.yml
secrets: inherit
with:
aws-region: ${{ matrix.aws-region }}
test-cluster-name: 'e2e-canary-test'
caller-workflow-name: 'appsignals-python-e2e-eks-canary-test'
python-version: '3.11'
eks-12:
needs: eks-11
strategy:
fail-fast: false
matrix:
aws-region: [ 'us-east-1' ]
uses: ./.github/workflows/python-eks-retry.yml
secrets: inherit
with:
aws-region: ${{ matrix.aws-region }}
test-cluster-name: 'e2e-canary-test'
caller-workflow-name: 'appsignals-python-e2e-eks-canary-test'
python-version: '3.12'