Signed-off-by: Autumn! <autumnull@posteo.net>
---
.builds/alpine.yml | 4 ++--
.builds/freebsd.yml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
index dc0dd0cb..0dec402f 100644
--- 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
index f37d5be9..54e6adf9 100644
--- 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
--
2.42.0