-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to fix CI after merge (again)
- Loading branch information
1 parent
8dfa560
commit 805ecac
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
name: Install RandR headers | ||
run: | | ||
sudo apt-get update | ||
sudo apt install xorg-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev | ||
sudo apt install xorg-dev libglu1-mesa-dev | ||
- if: ${{ matrix.platform == 'windows' }} | ||
name: Setup MSVC | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|
@@ -73,10 +73,10 @@ jobs: | |
name: Install RandR headers | ||
run: | | ||
sudo apt-get update | ||
sudo apt install xorg-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev | ||
sudo apt install xorg-dev libglu1-mesa-dev | ||
- name: Configure | ||
run: cmake -B"build/${{ matrix.platform }}" -DVKB_BUILD_TESTS=ON | ||
run: cmake -B"build/${{ matrix.platform }}" -DVKB_BUILD_TESTS=ON -DGLFW_BUILD_WAYLAND=OFF | ||
|
||
- name: "Build Components ${{ matrix.platform }} in ${{ matrix.build_type }}" | ||
run: cmake --build "build/${{ matrix.platform }}" --target vkb__components --config ${{ matrix.build_type }} ${{ env.PARALLEL }} | ||
|
@@ -124,7 +124,7 @@ jobs: | |
- name: Install RandR headers | ||
run: | | ||
sudo apt-get update | ||
sudo apt install xorg-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev | ||
sudo apt install xorg-dev libglu1-mesa-dev | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
|