Skip to content

Commit 86cb56e

Browse files
committed
New variant?
1 parent a7dd8b9 commit 86cb56e

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/rust.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,24 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [macos-latest, ubuntu-latest, windows-latest]
19+
variant: [macos-latest, ubuntu-x11-latest, ubuntu-wayland-latest, windows-latest]
2020
include:
21-
- os: ubuntu-latest
21+
- variant: ubuntu-x11-latest
22+
os: ubuntu-latest
2223
headless: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
2324
dependencies: sudo apt-get install libxtst-dev libevdev-dev libudev-dev --assume-yes
2425
test: cargo test --verbose --features=serialize,x11
25-
- os: ubuntu-latest
26+
- variant: ubuntu-x11-latest
27+
os: ubuntu-latest
2628
headless: weston --no-config --socket=wl-test-env --backend=headless
2729
dependencies: sudo apt-get install libxtst-dev libevdev-dev libudev-dev --assume-yes
2830
test: WAYLAND_DISPLAY=wl-test-env cargo test --verbose --no-default-features --features=serialize,wayland
29-
- os: macos-latest
31+
- variant: macos-latest
32+
os: macos-latest
3033
# TODO: We can't test this on github, we can't set accessibility yet.
3134
test: cargo test --verbose --all-features -- --skip test_listen_and_simulate --skip test_grab
32-
- os: windows-latest
35+
- variant: windows-latest
36+
os: windows-latest
3337
test: cargo test --verbose --all-features
3438

3539
steps:

0 commit comments

Comments
 (0)