From 6a77e9f3b6997e158567128ad09449a73f5d358d Mon Sep 17 00:00:00 2001 From: crc Date: Wed, 6 Jan 2021 20:38:50 +0000 Subject: [PATCH] add build manifests for use w/sr.ht FossilOrigin-Name: ffc1b19af431119f7b691f8597106939965122ee3c1b3a799058118fd280f406 --- .builds/alpine.yml | 10 ++++++++++ .builds/debian-arm.yml | 11 +++++++++++ .builds/freebsd.yml | 10 ++++++++++ .builds/openbsd.yml | 10 ++++++++++ 4 files changed, 41 insertions(+) create mode 100644 .builds/alpine.yml create mode 100644 .builds/debian-arm.yml create mode 100644 .builds/freebsd.yml create mode 100644 .builds/openbsd.yml diff --git a/.builds/alpine.yml b/.builds/alpine.yml new file mode 100644 index 0000000..b4a70a2 --- /dev/null +++ b/.builds/alpine.yml @@ -0,0 +1,10 @@ +image: alpine/edge +sources: +- https://git.sr.ht/~crc_/retroforth +tasks: +- build: | + cd retroforth + make +- test: | + cd retroforth + ./bin/retro example/1D-Cellular-Automota.retro diff --git a/.builds/debian-arm.yml b/.builds/debian-arm.yml new file mode 100644 index 0000000..88f6087 --- /dev/null +++ b/.builds/debian-arm.yml @@ -0,0 +1,11 @@ +image: debian/unstable +arch: arm64 +sources: +- https://git.sr.ht/~crc_/retroforth +tasks: +- build: | + cd retroforth + make +- test: | + cd retroforth + ./bin/retro example/1D-Cellular-Automota.retro diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml new file mode 100644 index 0000000..fa6d408 --- /dev/null +++ b/.builds/freebsd.yml @@ -0,0 +1,10 @@ +image: freebsd/latest +sources: +- https://git.sr.ht/~crc_/retroforth +tasks: +- build: | + cd retroforth + make +- test: | + cd retroforth + ./bin/retro example/1D-Cellular-Automota.retro diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml new file mode 100644 index 0000000..92ebe78 --- /dev/null +++ b/.builds/openbsd.yml @@ -0,0 +1,10 @@ +image: openbsd/latest +sources: +- https://git.sr.ht/~crc_/retroforth +tasks: +- build: | + cd retroforth + make +- test: | + cd retroforth + ./bin/retro example/1D-Cellular-Automota.retro