diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-12-06 07:27:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-06 07:27:19 -0500 |
commit | e539a8b2081f458ea2d272654b3074390920510e (patch) | |
tree | 1ef8e99e334f8cb5abecf264f3af9821744a0ef4 /.builds/alpine.yml | |
parent | fdb67ff63bdb301ee202a128c0b8cb616736707d (diff) | |
parent | 7a2cef1ad043730d54ac28e901e9029a66166034 (diff) |
Merge pull request #1419 from emersion/ci-alpine
ci: add Alpine build
Diffstat (limited to '.builds/alpine.yml')
-rw-r--r-- | .builds/alpine.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.builds/alpine.yml b/.builds/alpine.yml new file mode 100644 index 00000000..9751dc8a --- /dev/null +++ b/.builds/alpine.yml @@ -0,0 +1,22 @@ +image: alpine/edge +packages: + - eudev-dev + - ffmpeg-dev + - libcap-dev + - libinput-dev + - libxkbcommon-dev + - mesa-dev + - meson + - pixman-dev + - wayland-dev + - wayland-protocols + - xcb-util-image-dev +sources: + - https://github.com/swaywm/wlroots +tasks: + - setup: | + cd wlroots + meson build + - build: | + cd wlroots + ninja -C build |