hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 26bf49970aca1fa4cb4efe9c0884081b11b5ad7f
parent f4e781a6ab5118aff7fd738d49bfc0f5b84e5742
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu,  4 Feb 2021 14:07:47 -0500

Add .build.yml

Diffstat:
A.build.yml | 25+++++++++++++++++++++++++
1 file changed, 25 insertions(+), 0 deletions(-)

diff --git a/.build.yml b/.build.yml @@ -0,0 +1,25 @@ +image: alpine/latest +sources: +- https://git.sr.ht/~sircmpwn/qbe +- https://git.sr.ht/~sircmpwn/harec +- https://git.sr.ht/~sircmpwn/stdlib +- https://git.sr.ht/~sircmpwn/hare +tasks: +- qbe: | + cd qbe + make PREFIX=/usr + sudo make install PREFIX=/usr +- harec: | + mkdir harec/build + cd harec/build + ../configure --prefix=/usr + make -j2 + sudo make install +- tests: | + cd hare + cp config.example.mk config.mk + ln -s ../stdlib ./ + make hare-tests +- check: | + cd hare + make check