diff options
author | Stephen Groat <stephengroat@Stephens-MacBook-Pro.local> | 2017-09-27 16:49:03 -0700 |
---|---|---|
committer | Stephen Groat <stephengroat@Stephens-MacBook-Pro.local> | 2017-09-27 16:49:03 -0700 |
commit | de0797f0732fa4bf05a3d513fbdf6e2f8120db51 (patch) | |
tree | 7d7bb16c4bb5bb16b678e48e367c6d4db1eae758 | |
parent | 30396270a28471dc8832a93732541a79b61042bd (diff) | |
download | yosys-de0797f0732fa4bf05a3d513fbdf6e2f8120db51.tar.gz yosys-de0797f0732fa4bf05a3d513fbdf6e2f8120db51.tar.bz2 yosys-de0797f0732fa4bf05a3d513fbdf6e2f8120db51.zip |
Add osx tests using brew bundle
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | Brewfile | 9 | ||||
-rw-r--r-- | README.md | 3 |
3 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 9f0cc06e7..cff8a5968 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,3 +32,4 @@ compiler: - gcc os: - linux + - osx diff --git a/Brewfile b/Brewfile new file mode 100644 index 000000000..d7cd05bf1 --- /dev/null +++ b/Brewfile @@ -0,0 +1,9 @@ +brew "bison" +brew "flex" +brew "gawk" +brew "libffi" +brew "git" +brew "mercurial" +brew "graphviz" +brew "pkg-config" +brew "python3" @@ -57,8 +57,7 @@ prerequisites for building yosys: Similarily, on Mac OS X MacPorts or Homebrew can be used to install dependencies: - $ brew install bison flex gawk libffi \ - git mercurial graphviz pkg-config python3 + $ brew tap Homebrew/bundle && brew bundle \ $ sudo port install bison flex readline gawk libffi \ git mercurial graphviz pkgconfig python36 |