Skip to content

Commit

Permalink
Fix linux dependencies in CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
eliemichel committed Oct 13, 2024
1 parent f09d042 commit d59cb3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runner: ubuntu-latest
install-deps: |
sudo apt-get update -y
sudo apt-get install -y xorg-dev
sudo apt-get install -y libwayland-dev libxkbcommon-dev xorg-dev
- system: Windows-MSVC-x64
runner: windows-latest
Expand Down Expand Up @@ -82,8 +82,8 @@ jobs:
- name: Run (Multiconfig)
if: ${{ matrix.is-multiconfig }}
run: build/${{ matrix.build-type }}/test${{ matrix.exe-extension }}
run: build/${{ matrix.build-type }}/hello-glfw3webgpu${{ matrix.exe-extension }}

- name: Run (Monoconfig)
if: ${{ !matrix.is-multiconfig }}
run: build/test${{ matrix.exe-extension }}
run: build/hello-glfw3webgpu${{ matrix.exe-extension }}

0 comments on commit d59cb3d

Please sign in to comment.