From 56a9e698d0a0381abd6d28e6f6366320a6e8cd4c Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Thu, 18 Jun 2020 17:27:07 +0200 Subject: [PATCH] Github Actions: Work around macos codesigning We can't use gettext and we won't use system pcre2. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8aa02611d..03088e2bc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,12 +36,12 @@ jobs: - uses: actions/checkout@v2 - name: Install deps run: | - brew install pcre2 python3 + brew install python3 sudo pip3 install pexpect - name: cmake run: | mkdir build && cd build - cmake .. + cmake -DWITH_GETTEXT=NO .. - name: make run: | make