From 9f7b4b1e10b94b4048ccfef0e7e67b11c9245b92 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Thu, 18 Mar 2021 10:01:25 -0700 Subject: [PATCH] Don't test corpora when processing MinGW jobs. This should reduce the time these CI runs take considerably. --- .github/workflows/cmake.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 9f014072..1287dc85 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -352,6 +352,9 @@ jobs: - name: Checkout test corpora uses: actions/checkout@v2 + # Don't test against all corpora with MinGW due to Wine being unable to run parallel jobs + # without connection timeout. Without parallel jobs test runs using Wine take close to an hour. + if: contains(matrix.name, 'MinGW') == false with: repository: zlib-ng/corpora path: test/data/corpora -- 2.47.2