diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-22 17:41:52 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-22 17:46:49 +0100 |
commit | d406f90f328a3e7540b92d963f43de8cb5bc0926 (patch) | |
tree | ad9e2be6056d025953e6956b2d1a6bf387b32ea7 /etc/taskcluster/macos | |
parent | 2b410acbf989e648fda450979962e9dc57c1ee48 (diff) | |
download | servo-d406f90f328a3e7540b92d963f43de8cb5bc0926.tar.gz servo-d406f90f328a3e7540b92d963f43de8cb5bc0926.zip |
Use `homebrew bundle` to avoid errors on upgrade available.
`homebrew install` could exit with errors like:
```
Error: cmake 3.12.4 is already installed
To upgrade to 3.13.0, run `brew upgrade cmake`
```
This solution is the one recommended in https://github.com/Homebrew/brew/issues/2491
Diffstat (limited to 'etc/taskcluster/macos')
-rw-r--r-- | etc/taskcluster/macos/Brewfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/etc/taskcluster/macos/Brewfile b/etc/taskcluster/macos/Brewfile new file mode 100644 index 00000000000..d8609f8e7f6 --- /dev/null +++ b/etc/taskcluster/macos/Brewfile @@ -0,0 +1,15 @@ +brew "autoconf@2.13" +brew "automake" +brew "cmake" +brew "openssl" +brew "pkg-config" +brew "gstreamer" +brew "gst-plugins-base", args: ["with-orc", "with-libogg", "with-opus", "with-theora", "with-libvorbis", "with-pango"] +brew "gst-libav" +brew "gst-plugins-bad" +brew "gst-plugins-good" +brew "gst-rtsp-server" +brew "htop" +brew "llvm" +brew "openssl@1.1" +brew "yasm" |