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