(travis-ci) fix travis-ci mac build (don't try to install libjpeg as it is already installed)#1345
Merged
daschuer merged 1 commit intomixxxdj:masterfrom Sep 17, 2017
Merged
Conversation
…it is already installed)
Merged
Member
Author
|
The error began following this commit Homebrew/homebrew-core@1fee4a3 |
Contributor
|
Travis passed 👍 |
Member
|
Thank you for instantly looking into it! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fix Travis-CI mac build.
Somewhere between August 6 and August 11 a new version (9b) of
libjpegbecame available for MacOSX.libjpeg 8dwas already installed on the macos builder.This resulted in a faulty run of
brew install libjpeg.Behaviour of
brew installis to issue a warning when (the package is already installed and no newer version is available) and an error when the package has a new version available (you have to usebrew upgradein order to upgrade a package, notbrew install).Removing
libjpegfrom the list of packages to install fixes the error.