diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2021-02-14 18:14:43 -0800 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2021-02-17 14:59:16 +0100 |
commit | 86c29e62d618c968153b9d039b83e41eb8b433d1 (patch) | |
tree | 344d2f0ab3d173e2cf6edcd53a9246d44ac8d2ed | |
parent | 9d4ca12f093a94514a9f747853f0243746353bc3 (diff) |
Prevent parallel test jobs from initializing Wine at the same time and erroring out.
-rw-r--r-- | .github/workflows/cmake.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 01ee433..11c77ca 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: | |