chore: default architecture input to arm64 for all shared workflows#245
Closed
JesperTerkelsen wants to merge 1 commit intomainfrom
Closed
chore: default architecture input to arm64 for all shared workflows#245JesperTerkelsen wants to merge 1 commit intomainfrom
JesperTerkelsen wants to merge 1 commit intomainfrom
Conversation
All shared workflows with an architecture input now default to arm64 runners instead of x64. This affects test, PR, coverage, sonarcloud, and deploy orchestration workflows — none of which produce architecture-specific artifacts (JVM, Python, Node.js, Bun are all cross-platform). Docker image builds (component-build.yml) are unaffected as they already build both architectures in a matrix. Consumers can still override with `architecture: "x64"` if needed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
architectureinput default fromx64toarm64across all 11 shared workflows that have this inputarchitecture: "x64"if neededAffected workflows
Test & PR workflows (no architecture-specific artifacts — JVM/Python/Node.js/Bun):
component-test-kotlin.yml— Gradle tests + Kover coveragecomponent-test-python.yml— pytestpull-request-kotlin.yml— lint + test + coveragepull-request-react.yml— pnpm lint/build/testpull-request-bun.yml— Bun lint/build/testsonar-cloud.yml— Gradle test + SonarCloud analysiscode-coverage-kotlin.yml— Kover report generation (upload job stays on x64)Deploy orchestration (architecture only controls test runner selection, NOT image builds):
deploy-kotlin.yml— passes architecture to test job onlydeploy-python.yml— passes architecture to test job onlydeploy-generic.yml— architecture input defined but unuseddeploy-generic-v2.yml— architecture input defined but unusedNot affected
component-build.yml— already builds both amd64+arm64 in a matrix (no architecture input)deploy-kotlin.ymlbuild step — calls component-build which is already multi-archTest plan
architecture: "x64"if needed🤖 Generated with Claude Code