diff options
author | Michael Forney <mforney@mforney.org> | 2021-06-15 17:25:46 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-06-16 00:28:10 -0700 |
commit | fb10b3671f41a3e09837fd07b90da9c25a1bbf57 (patch) | |
tree | abbc5beff6b2beb8371ee59908ab942b105cb72b /.builds/netbsd.yml | |
parent | ab3187e9d02a9e4c3395c28858ac179d1fc5787b (diff) |
Add initial NetBSD support
Diffstat (limited to '.builds/netbsd.yml')
-rw-r--r-- | .builds/netbsd.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml new file mode 100644 index 0000000..bb9c20b --- /dev/null +++ b/.builds/netbsd.yml @@ -0,0 +1,15 @@ +image: netbsd/latest +sources: +- https://git.sr.ht/~mcf/cproc +- git://c9x.me/qbe.git +packages: +- gmake +tasks: +- setup: | + sudo patch -p1 -d /usr/include < cproc/.builds/netbsd.diff +- build: | + PATH=$HOME/qbe/obj:$PATH + gmake -C qbe + cd cproc + ./configure + make all check bootstrap |