diff options
author | Zachary Snow <zach@zachjs.com> | 2021-03-28 17:45:38 -0400 |
---|---|---|
committer | Zachary Snow <zachary.j.snow@gmail.com> | 2021-03-28 23:37:56 -0400 |
commit | 1af994802ed75d5805191113f669409c3872fcf7 (patch) | |
tree | 9c2ba072cac08043e847b8983bd679459fa6e3ea | |
parent | e314a05e0a7337a55f4d2608c310e918d571326f (diff) | |
download | yosys-1af994802ed75d5805191113f669409c3872fcf7.tar.gz yosys-1af994802ed75d5805191113f669409c3872fcf7.tar.bz2 yosys-1af994802ed75d5805191113f669409c3872fcf7.zip |
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
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 1 insertions, 3 deletions
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' |