From cfe136796c0b54dd436ac6fbeb0dbe03cdcaebc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Sun, 20 Mar 2022 09:40:49 +0100 Subject: [PATCH] macOS: install libx11 on CI --- .github/workflows/macos-build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml index a606a3080..cb8e7cd84 100644 --- a/.github/workflows/macos-build.yml +++ b/.github/workflows/macos-build.yml @@ -29,6 +29,11 @@ jobs: steps: - uses: actions/checkout@v2 + # Install system dependencies + - name: Install system dependencies + run: | + brew install libx11 + # Force xmake to a specific folder (for cache) - name: Set xmake env run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" >> $GITHUB_ENV @@ -61,7 +66,7 @@ jobs: # Build the engine - name: Build Nazara - run: xmake build -v NazaraPlatform + run: xmake build -v NazaraRenderer # Run unit tests #- name: Run unit tests