commit: 815f5245e265869b393bfb276ff20bef6f685d01
parent f7b5d877bde773285f9d4ed53fb9bc5923644d61
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sun, 13 Mar 2022 10:46:10 +0100
.builds: Add CI (NetBSD, OpenBSD)
Diffstat:
2 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml
@@ -0,0 +1,16 @@
+image: netbsd/latest
+packages:
+ - pkg-config
+ - webkit-gtk
+ - clang
+sources:
+ - https://hacktivis.me/git/badwolf.git
+tasks:
+ - clang: |
+ cd badwolf
+ CC=clang ./configure
+ DESTDIR=/tmp/clang-destdir make clean all test install
+triggers:
+ - action: email
+ condition: failure
+ to: contact+builds.sr.ht@hacktivis.me
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml
@@ -0,0 +1,16 @@
+image: openbsd/latest
+packages:
+ - webkitgtk4
+ - gettext-tools
+ - clang-tools-extra
+sources:
+ - https://hacktivis.me/git/badwolf.git
+tasks:
+ - clang: |
+ cd badwolf
+ CC=clang ./configure
+ DESTDIR=/tmp/clang-destdir scan-build make clean all test install
+triggers:
+ - action: email
+ condition: failure
+ to: contact+builds.sr.ht@hacktivis.me