From 5e8c55f0bcd15d365d055f6ee7116a6115d04290 Mon Sep 17 00:00:00 2001 From: James Liu Date: Wed, 11 Sep 2024 10:45:55 +1000 Subject: [PATCH] ci: Upgrade Linux tests to a larger runner The 2xlarge-amd64 runners have 32 cores which our concurrent tests can fully utilise: https://docs.gitlab.com/ee/ci/runners/hosted_runners/linux.html#machine-types-available-for-linux---x86-64 --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 59b2005de5..624e8c504c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -101,6 +101,8 @@ workflow: .test_template: &test_definition needs: [] stage: test + tags: + - saas-linux-2xlarge-amd64 cache: - *cache_deps_configuration - *cache_go_configuration -- GitLab