commit 267d488f73451731eed05076fdcd008f59be67a1
parent 3d8b47635db832b9e62a86fd492a1640823f9438
Author: Autumn! <autumnull@posteo.net>
Date: Fri, 8 Sep 2023 14:40:01 +0000
add -j2 to .builds for hare
Signed-off-by: Autumn! <autumnull@posteo.net>
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
@@ -30,14 +30,14 @@ tasks:
- hare: |
cd hare
cp config.example.mk config.mk
- make
+ make -j2
sudo make install
- tests: |
cd hare
make -j2 .bin/hare-tests
- check: |
cd hare
- make check
+ make -j2 check
- tests_with_libc: |
cd hare
hare test -T+libc -lc -o .bin/hare-tests-libc
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
@@ -20,11 +20,11 @@ tasks:
- hare: |
cd hare
sed -e 's/linux/freebsd/g' < config.example.mk > config.mk
- make
+ make -j2
sudo make install
- tests: |
cd hare
make -j2 .bin/hare-tests
- check: |
cd hare
- make check
+ make -j2 check