From bdd16959c4db2eb772bd2348849afd1d9924e8ec Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Tue, 13 Dec 2022 16:08:53 +0000 Subject: [PATCH] CI: raise cross-run timeouts & use all cores On Ubuntu 22.04, these tests take significantly longer than they did on 20.04 for reasons not (yet) known. In lieu of understanding, try raising the timeouts and taking advantage of both cores in the github-hosted runner VMs. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fae2b096f..46cf7ba0b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -237,8 +237,8 @@ jobs: # QEMU) - name: Test working-directory: ${{github.workspace}}/build - run: ctest --output-on-failure -E '(perf-.*)|(.*-malloc$)' --timeout 400 - timeout-minutes: 30 + run: ctest -j 2 --output-on-failure -E '(perf-.*)|(.*-malloc$)' --timeout 400 + timeout-minutes: 45 windows: strategy: