aboutsummaryrefslogtreecommitdiff
path: root/.builds
diff options
context:
space:
mode:
Diffstat (limited to '.builds')
-rw-r--r--.builds/alpine.yml13
-rw-r--r--.builds/archlinux.yml12
-rw-r--r--.builds/freebsd.yml12
3 files changed, 37 insertions, 0 deletions
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
new file mode 100644
index 0000000..ea4ced2
--- /dev/null
+++ b/.builds/alpine.yml
@@ -0,0 +1,13 @@
+image: alpine/edge
+packages:
+ - meson
+ - wayland
+ - wayland-dev
+ - wayland-protocols
+sources:
+ - https://git.sr.ht/~kennylevinsen/wlsunset
+tasks:
+ - build: |
+ meson build wlsunset
+ ninja -C build
+
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml
new file mode 100644
index 0000000..3882ea6
--- /dev/null
+++ b/.builds/archlinux.yml
@@ -0,0 +1,12 @@
+image: archlinux
+packages:
+ - meson
+ - wayland
+ - wayland-protocols
+sources:
+ - https://git.sr.ht/~kennylevinsen/wlsunset
+tasks:
+ - build: |
+ meson build wlsunset
+ ninja -C build
+
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
new file mode 100644
index 0000000..ac8481e
--- /dev/null
+++ b/.builds/freebsd.yml
@@ -0,0 +1,12 @@
+image: freebsd/latest
+packages:
+ - meson
+ - wayland
+ - wayland-protocols
+ - pkgconf
+sources:
+ - https://git.sr.ht/~kennylevinsen/wlsunset
+tasks:
+ - build: |
+ meson build wlsunset
+ ninja -C build