From e00cccd33f2a1f0a70c84026982841a3ce47a0b0 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 17 Apr 2025 10:23:37 +0530 Subject: [PATCH] Bump up test runners after Elasticsearch move (#30778) When Elasticsearch/Opensearch was in enterprise repo, we had to bump up the runners: https://github.com/mattermost/enterprise/commit/9b151defcc231c187960f29709f7b6f97a13c98c. However, the ES code was move inside server repo, but the test runners were not changed. This led to frequent test failures. So we are bumping up the test runners. This will unfortunately lead to an increased cost, but we have also cut down in other places viz. the build phase uses the free runner now (https://github.com/mattermost/mattermost/pull/29297). And the enterprise build also uses free runner (https://github.com/mattermost/enterprise/pull/1792). ```release-note NONE ``` --- .github/workflows/server-test-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/server-test-template.yml b/.github/workflows/server-test-template.yml index 27b19f45e9..11a956a36b 100644 --- a/.github/workflows/server-test-template.yml +++ b/.github/workflows/server-test-template.yml @@ -18,7 +18,7 @@ on: jobs: test: name: ${{ inputs.name }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest-8-cores env: COMPOSE_PROJECT_NAME: ghactions steps: