diff options
author | Oliver Smith <ollieparanoid@postmarketos.org> | 2020-06-22 17:25:03 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2020-06-22 17:09:59 +0000 |
commit | b1efa9f841d8289d50c288ee950d15095b8c6bad (patch) | |
tree | 30943c99401c8c06fa6eb2309ba6b5e8f31d389d /main/fontconfig/APKBUILD | |
parent | c68bc3e8f6c8621cd815378ccee15818f56b61f9 (diff) | |
download | aports-b1efa9f841d8289d50c288ee950d15095b8c6bad.tar.gz aports-b1efa9f841d8289d50c288ee950d15095b8c6bad.tar.bz2 aports-b1efa9f841d8289d50c288ee950d15095b8c6bad.tar.xz |
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.
Diffstat (limited to 'main/fontconfig/APKBUILD')
-rw-r--r-- | main/fontconfig/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |