Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Add missing switch for forcing ARM tests on workflow dispatch #12709

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/aws-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ on:
required: false
type: boolean
default: false
forceARMTests:
description: 'Run the ARM tests'
required: false
type: boolean
default: false
enableTestSelection:
description: 'Enable Test Selection'
required: false
Expand Down Expand Up @@ -78,6 +83,7 @@ jobs:
# default "disableTestSelection" to `true` if it's a push or schedule event
disableTestSelection: ${{ inputs.enableTestSelection != true }}
PYTEST_LOGLEVEL: ${{ inputs.PYTEST_LOGLEVEL }}
forceARMTests: ${{ inputs.forceARMTests == true }}
secrets:
DOCKERHUB_PULL_USERNAME: ${{ secrets.DOCKERHUB_PULL_USERNAME }}
DOCKERHUB_PULL_TOKEN: ${{ secrets.DOCKERHUB_PULL_TOKEN }}
Expand Down
16 changes: 13 additions & 3 deletions .github/workflows/aws-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,17 @@ on:
type: boolean
default: false
randomize-aws-credentials:
description: "Randomize AWS credentials"
description: 'Randomize AWS credentials'
default: false
required: false
type: boolean
onlyAcceptanceTests:
description: "Run only acceptance tests"
description: 'Run only acceptance tests'
default: false
required: false
type: boolean
forceARMTests:
description: 'Run the ARM64 tests'
default: false
required: false
type: boolean
Expand Down Expand Up @@ -75,6 +80,11 @@ on:
default: false
required: false
type: boolean
forceARMTests:
description: 'Run the ARM64 tests'
default: false
required: false
type: boolean
testAWSRegion:
description: 'AWS test region'
required: false
Expand Down Expand Up @@ -482,7 +492,7 @@ jobs:


test-acceptance:
name: "Acceptance Tests (${{ contains(matrix.runner, 'arm') && 'ARM64' || 'AMD64' }}"
name: "Acceptance Tests (${{ contains(matrix.runner, 'arm') && 'ARM64' || 'AMD64' }})"
needs:
- build
strategy:
Expand Down
Loading