diff options
author | Ren Kararou <[email protected]> | 2025-01-30 22:34:52 -0600 |
---|---|---|
committer | Ren Kararou <[email protected]> | 2025-01-30 22:34:52 -0600 |
commit | b456099f56a1770cbaa10901eee5c87a6a418c69 (patch) | |
tree | 2bd64010d032f2943ecc4281b419d845ebf75469 | |
parent | f6dda8af9998eba76ff377c91cb69593c086b8c0 (diff) | |
download | libspicy-b456099f56a1770cbaa10901eee5c87a6a418c69.tar.gz libspicy-b456099f56a1770cbaa10901eee5c87a6a418c69.tar.bz2 libspicy-b456099f56a1770cbaa10901eee5c87a6a418c69.zip |
add ci
-rw-r--r-- | .builds/arch.yml | 19 | ||||
-rw-r--r-- | .builds/freebsd.yml | 16 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.builds/arch.yml b/.builds/arch.yml new file mode 100644 index 0000000..8414884 --- /dev/null +++ b/.builds/arch.yml @@ -0,0 +1,19 @@ +image: archlinux +packages: + - base-devel + - llvm + - clang +sources: + - https://git.sr.ht/~spicywolf/libspicy +triggers: + - action: email + condition: always + to: ~spicywolf/[email protected] +tasks: + - build: | + cd libspicy + make + - release: | + cd libspicy + make release + diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml new file mode 100644 index 0000000..ec54f40 --- /dev/null +++ b/.builds/freebsd.yml @@ -0,0 +1,16 @@ +image: freebsd/latest +packages: + - gmake +sources: + - https://git.sr.ht/~spicywolf/libspicy +triggers: + - action: email + condition: always + to: ~spicywolf/[email protected] +tasks: + - build: | + cd libspicy + gmake + - release: | + cd libspicy + gmake release |