diff options
Diffstat (limited to '.builds')
-rw-r--r-- | .builds/arch-bazel.yml | 16 | ||||
-rw-r--r-- | .builds/freebsd-bazel.yml | 13 |
2 files changed, 29 insertions, 0 deletions
diff --git a/.builds/arch-bazel.yml b/.builds/arch-bazel.yml new file mode 100644 index 0000000..f9337e6 --- /dev/null +++ b/.builds/arch-bazel.yml @@ -0,0 +1,16 @@ +image: archlinux +packages: + - base-devel + - clang + - bazel +sources: + - https://git.sr.ht/~spicywolf/nbtpd +triggers: + - action: email + condition: always + to: ~spicywolf/[email protected] +tasks: + - build: | + cd nbtpd + bazel build //nbtpd:nbtpd + diff --git a/.builds/freebsd-bazel.yml b/.builds/freebsd-bazel.yml new file mode 100644 index 0000000..f2094af --- /dev/null +++ b/.builds/freebsd-bazel.yml @@ -0,0 +1,13 @@ +image: freebsd/latest +packages: + - bazel +sources: + - https://git.sr.ht/~spicywolf/nbtpd +triggers: + - action: email + condition: always + to: ~spicywolf/[email protected] +tasks: + - build: | + cd nbtpd + bazel build //nbtpd:nbtpd |