From 0e591badc29bcde5039e6bd58da26f34ef065c0f Mon Sep 17 00:00:00 2001 From: Carl Csaposs Date: Thu, 30 Jan 2025 10:53:41 +0000 Subject: [PATCH] patch(build_*.yaml): Use GitHub-hosted free ARM runners (#274) Switch from paid GitHub-hosted ARM runners to public preview free runners (https://github.blog/changelog/2025-01-16-linux-arm64-hosted-runners-now-available-for-free-in-public-repositories-public-preview/) Will switch integration_test_charm.yaml from Azure ARM runners to GitHub ARM runners once the GitHub ARM runners are Generally Available --- .../craft_tools/collect_platforms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cli/data_platform_workflows_cli/craft_tools/collect_platforms.py b/python/cli/data_platform_workflows_cli/craft_tools/collect_platforms.py index 3ad9eeee..8950540f 100644 --- a/python/cli/data_platform_workflows_cli/craft_tools/collect_platforms.py +++ b/python/cli/data_platform_workflows_cli/craft_tools/collect_platforms.py @@ -25,7 +25,7 @@ logging.basicConfig(level=logging.INFO, stream=sys.stdout) RUNNERS = { craft.Architecture.X64: "ubuntu-latest", - craft.Architecture.ARM64: "Ubuntu_ARM64_4C_16G_02", + craft.Architecture.ARM64: "ubuntu-24.04-arm", }