Skip to content

Commit b601b8b

Browse files
authored
ci: default to hosted runners unless explicitly instructed otherwise (#13023)
1 parent a1f1d51 commit b601b8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/ci/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ var (
2424
linux_x64_xlarge = []string{"self-hosted", "linux", "x64", "xlarge"}
2525
linux_arm64_2xlarge = []string{"self-hosted", "linux", "arm64", "2xlarge"}
2626
linux_arm64_xlarge = []string{"self-hosted", "linux", "arm64", "xlarge"}
27-
linux_x64 = []string{"self-hosted", "linux", "x64"}
28-
linux_arm64 = []string{"self-hosted", "linux", "arm64"}
27+
linux_x64 = []string{"ubuntu-latest"}
28+
linux_arm64 = []string{"ubuntu-24.04-arm"}
2929
)
3030

3131
type TestGroupMetadata struct {

0 commit comments

Comments
 (0)