projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e314a05
)
gha: trim macOS dependencies
author
Zachary Snow
<zach@zachjs.com>
Sun, 28 Mar 2021 21:45:38 +0000
(17:45 -0400)
committer
Zachary Snow
<zachary.j.snow@gmail.com>
Mon, 29 Mar 2021 03:37:56 +0000
(23:37 -0400)
- Only install needed dependencies rather than using Brewfile
- Remove brew update (recent enough formulae already baked in)
- Saves ~16 minutes in macOS CI
.github/workflows/test.yml
patch
|
blob
|
history
diff --git
a/.github/workflows/test.yml
b/.github/workflows/test.yml
index d83cff5cd3ebf5f3901e0ec932e38c0f276adc81..2a757d1533c9769ef9ae8800163d01e96ea02aca 100644
(file)
--- 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'