From 86c29e62d618c968153b9d039b83e41eb8b433d1 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Sun, 14 Feb 2021 18:14:43 -0800 Subject: [PATCH] Prevent parallel test jobs from initializing Wine at the same time and erroring out. --- .github/workflows/cmake.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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: | -- 2.47.2