From 9e9501e26459595e33c11dec87056775fe0546af Mon Sep 17 00:00:00 2001 From: SirLynix Date: Wed, 24 Jan 2024 10:47:49 +0100 Subject: [PATCH] CI: Install dependencies with -vD (temp fix for macOS hang) see https://github.com/xmake-io/xmake/issues/4645 --- .github/workflows/macos-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml index 1c8b285df..24437213b 100644 --- a/.github/workflows/macos-build.yml +++ b/.github/workflows/macos-build.yml @@ -71,7 +71,7 @@ jobs: # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.confs.mode }} ${{ matrix.confs.config }} --ccache=n --ffmpeg=y --shadernodes=y --tests=y --unitybuild=y --yes + run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.confs.mode }} ${{ matrix.confs.config }} --ccache=n --ffmpeg=y --shadernodes=y --tests=y --unitybuild=y --yes -vD # Save dependencies - name: Save cached xmake dependencies