Skip to content

Commit

Permalink
add tests for different node version and arm cpu architecture (#109)
Browse files Browse the repository at this point in the history
add tests for different node version and arm cpu architecture

*Issue #, if available:*

*Description of changes:*

Add tests to main build workflow:
* different node version (14, 16, 18, 20, 22)
* arm cpu architecture


By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.
  • Loading branch information
pxaws authored Oct 25, 2024
1 parent 901a357 commit 8cb2245
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .github/workflows/application-signals-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,32 @@ jobs:
aws-region: us-east-1
staging-instrumentation-name: ${{ inputs.staging-instrumentation-name }}
caller-workflow-name: 'main-build'


ec2-different-node-version:
strategy:
fail-fast: false
matrix:
node-version: [ '14', '16', '18', '20', '22' ]
needs: [ upload-main-build ]
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/node-ec2-default-test.yml@main
secrets: inherit
with:
aws-region: 'us-east-1'
staging-instrumentation-name: ${{ inputs.staging-instrumentation-name }}
node-version: ${{ matrix.node-version }}
cpu-architecture: 'x86_64'
caller-workflow-name: 'main-build'

ec2-arm64-cpu-architecture:
needs: [ upload-main-build ]
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/node-ec2-default-test.yml@main
secrets: inherit
with:
aws-region: 'us-east-1'
staging-instrumentation-name: ${{ inputs.staging-instrumentation-name }}
cpu-architecture: 'arm64'
caller-workflow-name: 'main-build'

eks:
uses: aws-observability/aws-application-signals-test-framework/.github/workflows/node-eks-test.yml@main
secrets: inherit
Expand Down

0 comments on commit 8cb2245

Please sign in to comment.