Skip to content

Commit

Permalink
Fix CI - try 9
Browse files Browse the repository at this point in the history
  • Loading branch information
Zetison committed Jul 23, 2024
1 parent 36703b2 commit 1122ea4
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/<version>/mesa-<version>-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
Expand Down

0 comments on commit 1122ea4

Please sign in to comment.