From 9bc45e67f5428f6474f21774a6375955d8253c49 Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Sat, 19 Oct 2024 21:09:43 +0200 Subject: [PATCH] fixup! Ticket #4170: implement CI via GitHub Actions Signed-off-by: Yury V. Zaytsev --- .github/workflows/ci-solaris.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-solaris.yml b/.github/workflows/ci-solaris.yml index 418474026d..6bc82cfb39 100644 --- a/.github/workflows/ci-solaris.yml +++ b/.github/workflows/ci-solaris.yml @@ -26,13 +26,16 @@ jobs: chown test -R $(pwd) su - test -c ' \ + \ + setenv PKG_CONFIG_PATH /usr/lib/64/pkgconfig ; \ + \ ./configure \ --prefix="$(pwd)/install-prefix" \ --with-screen=ncurses \ --enable-mclib \ --enable-aspell ; \ \ - make -j$(nproc) ; \ + make -j $(psrinfo -p) ; \ make check ; \ make install ; \ '