From b1efa9f841d8289d50c288ee950d15095b8c6bad Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 22 Jun 2020 17:25:03 +0200 Subject: main/fontconfig: tests: -j1, cat log on failure One of the tests, "run-test.sh", is currently failing on build-edge-armhf. I was not able to reproduce it with an arm machine locally. Using -j1 should hopefully fix it, and if it does not, at least we should see more details about why it fails on the build machine. Notably the gitlab CI job for build-armv7 also failed without -j1. --- main/fontconfig/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/fontconfig/APKBUILD b/main/fontconfig/APKBUILD index 01f7fa4142..8abfbb69e8 100644 --- a/main/fontconfig/APKBUILD +++ b/main/fontconfig/APKBUILD @@ -35,7 +35,7 @@ build() { check() { cd "$builddir" - make check + make -j1 check || (cat test/test-suite.log; false) } package() { -- cgit v1.2.3