From d9d12c5c4381e27905876dbbd39e5df05dbf385f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 1 Jul 2026 18:59:34 +0100 Subject: [PATCH] More tweaks. --- .github/workflows/regress.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/regress.yml b/.github/workflows/regress.yml index 46b45c6a3..952a77179 100644 --- a/.github/workflows/regress.yml +++ b/.github/workflows/regress.yml @@ -24,10 +24,13 @@ jobs: include: - name: ubuntu-24.04-x64 runner: ubuntu-24.04 + make: make - name: ubuntu-24.04-arm64 runner: ubuntu-24.04-arm + make: make - name: macos-26-arm64 runner: macos-26 + make: gmake steps: - name: checkout @@ -44,6 +47,7 @@ jobs: build-essential \ libevent-dev \ libncurses-dev \ + libutf8proc-dev pkg-config - name: dependencies @@ -54,6 +58,7 @@ jobs: automake \ bison \ libevent \ + make \ ncurses \ utf8proc \ pkg-config @@ -62,9 +67,9 @@ jobs: run: | sh autogen.sh ./configure --enable-utf8proc - make -j"$(getconf _NPROCESSORS_ONLN)" + ${{ matrix.make }} -j"$(getconf _NPROCESSORS_ONLN)" - name: test run: | cd regress - make + ${{ matrix.make }}