From 87f81a51d4486d63beb21806ec929703a56b8270 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Tue, 6 May 2025 11:41:38 +1000 Subject: [PATCH] Test system with more workers System specs have been quite slow, taking up to 10 minutes per worker. But now that we freed up a worker from linting and two workers from models, we can add these to the system specs to reduce the time to test completion. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38cb04a94b..32de4d33db 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -116,10 +116,10 @@ jobs: # [n] - where the n is a number of parallel jobs you want to run your tests on. # Use a higher number if you have slow tests to split them between more parallel jobs. # Remember to update the value of the `ci_node_index` below to (0..n-1). - ci_node_total: [10] + ci_node_total: [11] # Indexes for parallel jobs (starting from zero). # E.g. use [0, 1] for 2 parallel jobs, [0, 1, 2] for 3 parallel jobs, etc. - ci_node_index: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + ci_node_index: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] steps: - uses: actions/checkout@v3 @@ -203,10 +203,10 @@ jobs: # [n] - where the n is a number of parallel jobs you want to run your tests on. # Use a higher number if you have slow tests to split them between more parallel jobs. # Remember to update the value of the `ci_node_index` below to (0..n-1). - ci_node_total: [6] + ci_node_total: [8] # Indexes for parallel jobs (starting from zero). # E.g. use [0, 1] for 2 parallel jobs, [0, 1, 2] for 3 parallel jobs, etc. - ci_node_index: [0, 1, 2, 3, 4, 5] + ci_node_index: [0, 1, 2, 3, 4, 5, 6, 7] steps: - uses: actions/checkout@v3