hare

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

commit d7d3c83a7dc97452441de7e5387fb778f8f4e4c2
parent e4844f488580749010c64761f7b67d4f0ee36274
Author: Bor Grošelj Simić <bgs@turminal.net>
Date:   Tue,  2 May 2023 02:50:52 +0200

builds: make .bin/hare-tests in parallel

Diffstat:
M.builds/alpine.yml | 4++--
M.builds/freebsd.yml | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.builds/alpine.yml b/.builds/alpine.yml @@ -19,7 +19,7 @@ tasks: fi - qbe: | cd qbe - make PREFIX=/usr + make -j2 PREFIX=/usr sudo make install PREFIX=/usr - harec: | mkdir harec/build @@ -34,7 +34,7 @@ tasks: sudo make install - tests: | cd hare - make .bin/hare-tests + make -j2 .bin/hare-tests - check: | cd hare make check diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml @@ -9,7 +9,7 @@ packages: tasks: - qbe: | cd qbe - make PREFIX=/usr + make -j2 PREFIX=/usr sudo make install PREFIX=/usr - harec: | mkdir harec/build @@ -24,7 +24,7 @@ tasks: sudo make install - tests: | cd hare - make .bin/hare-tests + make -j2 .bin/hare-tests - check: | cd hare make check