harec

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

commit 3a0fc82e5d96c77f77db53ee8f9f1ffa3458f40a
parent ab043e97c3808707c05cc899db255675c8b2fc02
Author: Eyal Sawady <ecs@d2evs.net>
Date:   Mon, 11 Jan 2021 09:01:31 -0500

.build.yml: test with cproc

Diffstat:
M.builds/alpine.yml | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/.builds/alpine.yml b/.builds/alpine.yml @@ -1,12 +1,18 @@ image: alpine/latest sources: - https://git.sr.ht/~sircmpwn/harec +- https://git.sr.ht/~mcf/cproc - https://git.sr.ht/~sircmpwn/qbe tasks: - qbe: | cd qbe make PREFIX=/usr sudo make install PREFIX=/usr +- cproc: | + cd cproc + ./configure + make + sudo make install PREFIX=/usr - prepare: | mkdir harec/build cd harec/build @@ -17,3 +23,13 @@ tasks: - tests: | cd harec/build make check +- prepare-cproc: | + cd harec/build + make distclean + CC=cproc ../configure +- build-cproc: | + cd harec/build + make -j2 +- tests-cproc: | + cd harec/build + make check