From: Zachary Snow Date: Sun, 28 Mar 2021 21:45:38 +0000 (-0400) Subject: gha: trim macOS dependencies X-Git-Tag: yosys-0.10~228 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1af994802ed75d5805191113f669409c3872fcf7;p=yosys.git gha: trim macOS dependencies - Only install needed dependencies rather than using Brewfile - Remove brew update (recent enough formulae already baked in) - Saves ~16 minutes in macOS CI --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d83cff5cd..2a757d153 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,9 +23,7 @@ jobs: - name: Install dependencies (macOS) if: runner.os == 'macOS' run: | - brew update - brew tap Homebrew/bundle - brew bundle + brew install bison gawk libffi pkg-config bash - name: Setup environment (Linux) if: runner.os == 'Linux'