Skip to content

Add Windows ARM CI coverage and default to thin launcher on win32/arm64#1136

Draft
alexarchambault with Copilot wants to merge 4 commits into
mainfrom
copilot/add-windows-arm-ci-jobs
Draft

Add Windows ARM CI coverage and default to thin launcher on win32/arm64#1136
alexarchambault with Copilot wants to merge 4 commits into
mainfrom
copilot/add-windows-arm-ci-jobs

Conversation

Copilot AI commented May 18, 2026

Copy link
Copy Markdown
Contributor

Windows ARM runners were not covered in CI, and the action defaulted to the native launcher path on a platform where no native coursier launcher is published. This updates CI coverage and launcher selection so Windows ARM uses the JVM thin launcher by default.

  • CI matrix updates (Windows ARM)

    • Added windows-11-arm coverage in .github/workflows/test.yml:
      • test job include matrix (jvm: '21')
      • test-jvm-launchers include matrix (launcher: thin and launcher: assembly)
  • Launcher selection behavior

    • Updated src/main.ts launcher resolution:
      • explicit launcher=thin|jvmthin
      • explicit launcher=assemblyassembly
      • empty launcher on win32 + arm64thin (new default)
      • otherwise → native
} else if (launcherInput === '' && isWindowsArm) {
  launcherType = 'thin'
} else {
  launcherType = 'native'
}

Copilot AI and others added 4 commits May 15, 2026 16:00
Agent-Logs-Url: https://github.com/coursier/setup-action/sessions/a3adbefa-1131-4b49-9f5f-d9635de34dab

Co-authored-by: alexarchambault <7063723+alexarchambault@users.noreply.github.com>
Agent-Logs-Url: https://github.com/coursier/setup-action/sessions/a3adbefa-1131-4b49-9f5f-d9635de34dab

Co-authored-by: alexarchambault <7063723+alexarchambault@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants