Add wayland and no-x11-wayland build to CI
This commit is contained in:
parent
488841d3e8
commit
2f433878c2
1 changed files with 7 additions and 3 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get update && sudo apt-get install libgtk-3-dev
|
||||
run: sudo apt-get update && sudo apt-get install libgtk-3-dev libgtk-layer-shell-dev
|
||||
- name: Set up
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
|
@ -23,6 +23,10 @@ jobs:
|
|||
components: rustfmt
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: cargo build
|
||||
- name: Build x11
|
||||
run: cargo --no-default-features --features=x11 check
|
||||
- name: Build wayland
|
||||
run: cargo --no-default-features --features=wayland check
|
||||
- name: Build no-x11-wayland
|
||||
run: cargo --no-default-features --features=no-x11-wayland check
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue