-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Install libwayland-dev and xorg-dev in linux builds
- Loading branch information
1 parent
91968d7
commit 7ce8ed4
Showing
1 changed file
with
4 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -59,11 +59,14 @@ jobs: | |
- uses: lukka/get-cmake@latest | ||
with: | ||
cmakeVersion: 3.17.2 | ||
- run: python -m pip install jsonschema pyparsing | ||
- name: Install python deps | ||
run: python -m pip install jsonschema pyparsing | ||
- name: Setup ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.os }}-${{ matrix.config }}-${{ matrix.compiler.cc }}-${{ matrix.compiler.cxx }} | ||
- name: Install packages | ||
run: sudo apt-get -qq update && sudo apt-get install -y libwayland-dev xorg-dev | ||
- name: Build Vulkan-ExtensionLayer | ||
run: python scripts/github_ci_build_desktop.py --config ${{ matrix.config }} | ||
env: | ||
|