From 8dc0c0f863e4bbf0d63205a89779b643c8d86002 Mon Sep 17 00:00:00 2001 From: Erwin van der Valk Date: Wed, 12 Nov 2025 09:38:15 +0100 Subject: [PATCH] increase agent size --- .github/workflow-gen/Program.cs | 2 +- .github/workflows/aspnetcore-authentication-jwtbearer-ci.yml | 4 +++- .github/workflows/bff-ci.yml | 4 +++- .github/workflows/docs-mcp-ci.yml | 4 +++- .github/workflows/identity-server-ci.yml | 4 +++- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflow-gen/Program.cs b/.github/workflow-gen/Program.cs index cd6be2a69..4256ddec0 100644 --- a/.github/workflow-gen/Program.cs +++ b/.github/workflow-gen/Program.cs @@ -95,7 +95,7 @@ void GenerateCiWorkflow(Product product) .Job(BuildJobId) .RunEitherOnBranchOrAsPR() .Name("Build and test (unit)") - .RunsOn(GitHubHostedRunners.UbuntuLatest) + .RunsOn("large", ["ubuntu-latest-x64-16core"]) .Defaults().Run("bash", product.Name) .Job; diff --git a/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml b/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml index 6a3be5c7b..a7947144e 100644 --- a/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml +++ b/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml @@ -61,7 +61,9 @@ jobs: build: name: Build and test (unit) if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch') - runs-on: ubuntu-latest + runs-on: + group: large + labels: [ubuntu-latest-x64-16core] permissions: actions: read checks: write diff --git a/.github/workflows/bff-ci.yml b/.github/workflows/bff-ci.yml index 2c9a8642c..76b502de2 100644 --- a/.github/workflows/bff-ci.yml +++ b/.github/workflows/bff-ci.yml @@ -61,7 +61,9 @@ jobs: build: name: Build and test (unit) if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch') - runs-on: ubuntu-latest + runs-on: + group: large + labels: [ubuntu-latest-x64-16core] permissions: actions: read checks: write diff --git a/.github/workflows/docs-mcp-ci.yml b/.github/workflows/docs-mcp-ci.yml index bbff4cd54..de9e644f0 100644 --- a/.github/workflows/docs-mcp-ci.yml +++ b/.github/workflows/docs-mcp-ci.yml @@ -61,7 +61,9 @@ jobs: build: name: Build and test (unit) if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch') - runs-on: ubuntu-latest + runs-on: + group: large + labels: [ubuntu-latest-x64-16core] permissions: actions: read checks: write diff --git a/.github/workflows/identity-server-ci.yml b/.github/workflows/identity-server-ci.yml index fab4e1de6..b31c965c4 100644 --- a/.github/workflows/identity-server-ci.yml +++ b/.github/workflows/identity-server-ci.yml @@ -61,7 +61,9 @@ jobs: build: name: Build and test (unit) if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch') - runs-on: ubuntu-latest + runs-on: + group: large + labels: [ubuntu-latest-x64-16core] permissions: actions: read checks: write