summaryrefslogtreecommitdiff
path: root/somebar/.builds
diff options
context:
space:
mode:
Diffstat (limited to 'somebar/.builds')
-rw-r--r--somebar/.builds/archlinux.yml19
-rw-r--r--somebar/.builds/freebsd.yml20
2 files changed, 39 insertions, 0 deletions
diff --git a/somebar/.builds/archlinux.yml b/somebar/.builds/archlinux.yml
new file mode 100644
index 0000000..7c4f209
--- /dev/null
+++ b/somebar/.builds/archlinux.yml
@@ -0,0 +1,19 @@
+image: archlinux
+packages:
+ - base-devel
+ - meson
+ - wayland
+ - wayland-protocols
+ - cairo
+ - pango
+sources:
+ - https://git.sr.ht/~raphi/somebar
+tasks:
+ - setup: |
+ cd somebar
+ meson build --fatal-meson-warnings
+ cp src/config.def.hpp src/config.hpp
+ - build: |
+ cd somebar/build
+ ninja
+ sudo ninja install
diff --git a/somebar/.builds/freebsd.yml b/somebar/.builds/freebsd.yml
new file mode 100644
index 0000000..90e6f1a
--- /dev/null
+++ b/somebar/.builds/freebsd.yml
@@ -0,0 +1,20 @@
+image: freebsd/latest
+packages:
+ - devel/evdev-proto
+ - devel/meson
+ - devel/pkgconf
+ - graphics/cairo
+ - graphics/wayland
+ - graphics/wayland-protocols
+ - x11-toolkits/pango
+sources:
+ - https://git.sr.ht/~raphi/somebar
+tasks:
+ - setup: |
+ cd somebar
+ meson build --fatal-meson-warnings
+ cp src/config.def.hpp src/config.hpp
+ - build: |
+ cd somebar/build
+ ninja
+ sudo ninja install \ No newline at end of file