harec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 4319458ffd15489c40d498887c38e669197390ce
parent 4362d9865b937ddf5ea74c0b3e7dece0239725dc
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 24 Oct 2021 10:06:09 +0200

Add FreeBSD build manifest

Diffstat:
A.builds/freebsd.yml | 22++++++++++++++++++++++
1 file changed, 22 insertions(+), 0 deletions(-)

diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml @@ -0,0 +1,22 @@ +image: freebsd/latest +sources: +- https://git.sr.ht/~sircmpwn/harec +- https://git.sr.ht/~sircmpwn/qbe +packages: +- binutils +- gmake +tasks: +- qbe: | + cd qbe + gmake PREFIX=/usr + sudo gmake install PREFIX=/usr +- prepare: | + mkdir harec/build + cd harec/build + ../configure +- build: | + cd harec/build + make -j2 +- tests: | + cd harec/build + make check