river/.github/workflows/ci_build.yml

122 lines
3.7 KiB
YAML
Raw Normal View History

2020-08-11 13:35:34 -07:00
on:
push:
branches:
- master
pull_request:
branches:
- master
2020-04-19 15:18:01 -07:00
2021-12-20 20:02:17 -08:00
name: voidlinux glibc
2020-04-19 15:18:01 -07:00
jobs:
default_build:
name: default build
2020-04-19 15:18:01 -07:00
runs-on: ubuntu-latest
container: voidlinux/voidlinux:latest
2020-04-19 15:18:01 -07:00
steps:
2020-11-19 12:27:45 -08:00
- name: install deps
2020-04-19 15:18:01 -07:00
run: |
xbps-install -Sy xbps
xbps-install -uy
2021-12-20 20:02:17 -08:00
# wayland/wlroots dependencies as well as we build from source
xbps-install -y MesaLib-devel libseat-devel eudev-libudev-devel libdrm-devel \
2021-12-20 20:02:17 -08:00
libinput-devel libxkbcommon-devel pixman-devel expat-devel libxml2-devel \
libffi-devel wayland-protocols xcb-util-errors-devel xcb-util-wm-devel \
xcb-util-renderutil-devel libxcb-devel xcb-util-cursor-devel xcb-util-devel \
xcb-util-image-devel xcb-util-keysyms-devel xcb-util-xrm-devel \
xorg-server-xwayland pkg-config meson git gcc zig pkgconf scdoc
git clone https://gitlab.freedesktop.org/wayland/wayland.git
cd wayland
git checkout 1.20.0
meson build -Ddocumentation=false -Dtests=false --prefix /usr
ninja -C build install
cd ..
2021-06-23 06:14:23 -07:00
2021-12-20 20:02:17 -08:00
git clone https://gitlab.freedesktop.org/wlroots/wlroots.git
2021-06-23 06:14:23 -07:00
cd wlroots
2021-12-20 20:02:17 -08:00
git checkout 0.15.0
meson build --auto-features=enabled -Drenderers=gles2 -Dexamples=false \
-Dwerror=false -Db_ndebug=false --prefix /usr
2021-06-23 06:14:23 -07:00
ninja -C build install
2020-11-19 12:27:45 -08:00
- name: checkout
uses: actions/checkout@v2
with:
submodules: true
2020-04-19 15:18:01 -07:00
2020-05-20 14:06:33 -07:00
- name: build
2020-04-19 15:18:01 -07:00
run: |
zig build
2020-05-20 14:06:33 -07:00
- name: test
2020-04-19 15:18:01 -07:00
run: |
zig build test
2020-05-20 14:06:33 -07:00
xwayland_build:
name: xwayland build
runs-on: ubuntu-latest
container: voidlinux/voidlinux:latest
steps:
- name: install deps
run: |
xbps-install -Sy xbps
xbps-install -uy
2021-12-20 20:02:17 -08:00
# wayland/wlroots dependencies as well as we build from source
xbps-install -y MesaLib-devel libseat-devel eudev-libudev-devel libdrm-devel \
2021-12-20 20:02:17 -08:00
libinput-devel libxkbcommon-devel pixman-devel expat-devel libxml2-devel \
libffi-devel wayland-protocols xcb-util-errors-devel xcb-util-wm-devel \
xcb-util-renderutil-devel libxcb-devel xcb-util-cursor-devel xcb-util-devel \
xcb-util-image-devel xcb-util-keysyms-devel xcb-util-xrm-devel \
xorg-server-xwayland pkg-config meson git gcc zig pkgconf scdoc
git clone https://gitlab.freedesktop.org/wayland/wayland.git
cd wayland
git checkout 1.20.0
meson build -Ddocumentation=false -Dtests=false --prefix /usr
ninja -C build install
cd ..
2021-06-23 06:14:23 -07:00
2021-12-20 20:02:17 -08:00
git clone https://gitlab.freedesktop.org/wlroots/wlroots.git
2021-06-23 06:14:23 -07:00
cd wlroots
2021-12-20 20:02:17 -08:00
git checkout 0.15.0
meson build --auto-features=enabled -Drenderers=gles2 -Dexamples=false \
-Dwerror=false -Db_ndebug=false --prefix /usr
2021-06-23 06:14:23 -07:00
ninja -C build install
- name: checkout
2020-11-19 12:27:45 -08:00
uses: actions/checkout@v2
with:
submodules: true
- name: build
run: |
zig build -Dxwayland=true
- name: test
run: |
zig build -Dxwayland=true test
zig_fmt:
name: zig fmt
runs-on: ubuntu-latest
container: voidlinux/voidlinux:latest
steps:
- name: install deps
run: |
2021-12-20 20:02:17 -08:00
xbps-install -Sy xbps
2020-11-19 12:27:45 -08:00
xbps-install -uy zig git
- name: checkout
2020-11-19 12:27:45 -08:00
uses: actions/checkout@v2
with:
submodules: true
- name: fmt
2020-05-20 14:06:33 -07:00
run: |
2020-11-19 12:27:45 -08:00
zig fmt --check river/
zig fmt --check riverctl/
zig fmt --check rivertile/
2020-12-05 13:53:50 -08:00
zig fmt --check build.zig