From 809cec0da6ceaaa43d62380345b713927f7021b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20H=C3=A6gland?= Date: Sat, 20 Jul 2024 10:54:11 +0200 Subject: [PATCH] Install m4.exe manually --- .github/workflows/actions.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index c17498a..05bb880 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -281,6 +281,13 @@ jobs: with: update: true install: base-devel mingw-w64-x86_64-toolchain + - name: Update MSYS2 and install m4 package + # Note: adding m4 to the install list in the setup-msys2 action did not work + # so we have to install it manually + run: | + C:\msys64\usr\bin\pacman -Syu --noconfirm + C:\msys64\usr\bin\pacman -S --noconfirm m4 + shell: cmd - name: Add MSYS2 to Path run: | echo "C:\msys64\usr\bin" >> $env:GITHUB_PATH