From: Nathan Moinvaziri Date: Mon, 15 Feb 2021 02:14:43 +0000 (-0800) Subject: Prevent parallel test jobs from initializing Wine at the same time and erroring out. X-Git-Tag: 2.0.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86c29e62d618c968153b9d039b83e41eb8b433d1;p=thirdparty%2Fzlib-ng.git Prevent parallel test jobs from initializing Wine at the same time and erroring out. --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 01ee4335..11c77cac 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -367,6 +367,12 @@ jobs: run: | python -u -m pip install codecov + - name: Initialize Wine + # Prevent parallel test jobs from initializing Wine at the same time + if: contains(matrix.packages, 'wine') + run: | + wineboot --init + - name: Generate project files # Shared libaries turned off for qemu ppc* and sparc & reduce code coverage sources run: |