From cf7fa682d12f19eeefe90891bc3090982a99c71a Mon Sep 17 00:00:00 2001 From: Tim Vaillancourt Date: Fri, 14 Feb 2025 23:22:10 +0100 Subject: [PATCH] nit: move new `const`s to own section (#17802) Signed-off-by: Tim Vaillancourt --- test/ci_workflow_gen.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/ci_workflow_gen.go b/test/ci_workflow_gen.go index a8f1a82e56f..a00d5bec9bf 100644 --- a/test/ci_workflow_gen.go +++ b/test/ci_workflow_gen.go @@ -33,8 +33,6 @@ const ( mysql80 mysqlVersion = "mysql80" mysql84 mysqlVersion = "mysql84" - cores16RunnerName = "gh-hosted-runners-16cores-1-24.04" - defaultRunnerName = "ubuntu-24.04" defaultMySQLVersion = mysql80 ) @@ -48,6 +46,11 @@ var ( unitTestDatabases = []mysqlVersion{mysql57, mysql80, mysql84} ) +const ( + cores16RunnerName = "gh-hosted-runners-16cores-1-24.04" + defaultRunnerName = "ubuntu-24.04" +) + const ( workflowConfigDir = "../.github/workflows"