From ce19c7ddd4fee1417d49bc1116a5413540842d17 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Mon, 24 Feb 2020 22:45:45 +0200 Subject: [PATCH] Install automake on macOS in github-actions --- .github/workflows/macos.yml | 6 ++++++ boot/ci-macos.template.yml | 3 +++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2012c2c2d0e..75d235a74b7 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -22,6 +22,9 @@ jobs: name: validate.sh ghc-8.8.1 runs-on: macos-latest steps: + - name: Install Autotools + run: | + brew install automake - name: Install GHC run: | cd $(mktemp -d) @@ -71,6 +74,9 @@ jobs: runs-on: macos-latest needs: validate-macos-8_8_1 steps: + - name: Install Autotools + run: | + brew install automake - name: Install GHC run: | cd $(mktemp -d) diff --git a/boot/ci-macos.template.yml b/boot/ci-macos.template.yml index 8a0aecd7292..6d2daff1b93 100644 --- a/boot/ci-macos.template.yml +++ b/boot/ci-macos.template.yml @@ -26,6 +26,9 @@ jobs: needs: validate-macos-{{ mangleVersion needs }} {% endfor %} steps: + - name: Install Autotools + run: | + brew install automake - name: Install GHC run: | cd $(mktemp -d)