From 1122ea404ae5c1dda9b72fc4d8242ae69edb4b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Vegard=20Ven=C3=A5s?= Date: Tue, 23 Jul 2024 10:08:27 +0200 Subject: [PATCH] Fix CI - try 9 --- .github/workflows/ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c6bdb8..12d8217 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,16 +44,21 @@ jobs: - name: Install Dependencies (Windows) if: ${{ matrix.os == 'windows-latest' }} run: | - # Install Visual C++ Build Tools - choco install visualcpp-build-tools -y - # Install additional dependencies if needed - choco install directx -y + ## Install Visual C++ Build Tools + # choco install visualcpp-build-tools -y + ## Install additional dependencies if needed + # choco install directx -y + # Download and extract Mesa3D + powershell -Command "Invoke-WebRequest -Uri 'https://github.com/mesa3d/mesa/releases/download//mesa--win64.zip' -OutFile 'mesa.zip'" + powershell -Command "Expand-Archive -Path 'mesa.zip' -DestinationPath 'C:\Mesa3D'" + # Add Mesa3D to PATH + setx PATH "%PATH%;C:\Mesa3D\bin" + setx MESA_HOME "C:\Mesa3D" shell: pwsh - name: Set OpenGL Environment if: ${{ matrix.os == 'windows-latest' }} shell: cmd run: | - dir C:\Windows\System32\opengl32.dll setx PATH "%PATH%;C:\Windows\System32" setx OPENGL_HOME "C:\Windows\System32" - uses: julia-actions/julia-buildpkg@v1