Add CI for xwayland
This commit is contained in:
parent
4d68043045
commit
08a2f47a5e
2 changed files with 40 additions and 7 deletions
9
.github/workflows/ci_build.yml
vendored
9
.github/workflows/ci_build.yml
vendored
|
@ -1,7 +1,5 @@
|
|||
# Build river and run the test suite every time a commit is pushed to master or
|
||||
# a pull request is opened against master.
|
||||
#
|
||||
# TODO: figure out why this didn't work on alpine
|
||||
|
||||
on:
|
||||
push:
|
||||
|
@ -11,20 +9,17 @@ on:
|
|||
branches:
|
||||
- master
|
||||
|
||||
name: Archliunx CI
|
||||
name: Archliunx
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Archliunx CI
|
||||
name: Archliunx
|
||||
runs-on: ubuntu-latest
|
||||
#container: alpine:edge
|
||||
container: archlinux:latest
|
||||
|
||||
steps:
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
#apk add --no-cache wlroots-dev
|
||||
#apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing zig
|
||||
pacman -Syu --noconfirm zig wayland-protocols wlroots pkgconf
|
||||
|
||||
- name: Checkout Code
|
||||
|
|
38
.github/workflows/ci_build_xwayland.yml
vendored
Normal file
38
.github/workflows/ci_build_xwayland.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Build river and run the test suite with xwayland enabled every time a commit
|
||||
# is pushed to master or a pull request is opened against master.
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
name: Archliunx + Xwayland
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Archliunx + Xwayland
|
||||
runs-on: ubuntu-latest
|
||||
container: archlinux:latest
|
||||
|
||||
steps:
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
pacman -Syu --noconfirm zig wayland-protocols wlroots pkgconf
|
||||
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: build
|
||||
run: |
|
||||
zig build -Dxwayland=true
|
||||
|
||||
- name: test
|
||||
run: |
|
||||
zig build -Dxwayland=true test
|
||||
|
||||
- name: zig fmt
|
||||
run: |
|
||||
zig fmt --check src/**/*.zig
|
Loading…
Reference in a new issue