Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Kart-Public
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andrew Bradley
Kart-Public
Commits
1e19ba85
Commit
1e19ba85
authored
6 years ago
by
Marco Z
Browse files
Options
Downloads
Patches
Plain Diff
Use standard OSX brew bottles to speed up test buildbots
parent
e7dc346a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.travis.yml
+13
-7
13 additions, 7 deletions
.travis.yml
with
13 additions
and
7 deletions
.travis.yml
+
13
−
7
View file @
1e19ba85
...
...
@@ -590,18 +590,24 @@ before_install:
install
:
# Install OS X library dependencies via Homebrew
# `brew install --build-bottle` builds libraries for x86_64's lowest common denominator CPU, core2
# `sdl2_mixer` requires options from the formula tap https://github.com/mazmazz/homebrew-srb2
# `brew postinstall` runs post-install scripts after building a bottle
# Do this differently for release buildbots:
# * `brew install --build-bottle` builds libraries for x86_64's lowest common denominator CPU, core2
# * `sdl2_mixer` requires options from the formula tap https://github.com/mazmazz/homebrew-srb2
# * `brew postinstall` runs post-install scripts after building a bottle
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update;
brew tap mazmazz/srb2;
fi;
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew install --build-bottle sdl2 game-music-emu zlib p7zip;
brew install --build-bottle mazmazz/srb2/sdl2_mixer --with-flac --with-mpg123;
brew postinstall sdl2 game-music-emu zlib p7zip mazmazz/srb2/sdl2_mixer;
brew install cmake||true;
if [[ "$__DPL_ACTIVE" != "1" ]]; then
brew install sdl2 sdl2_mixer game-music-emu p7zip;
brew install cmake||true;
else
brew install --build-bottle sdl2 game-music-emu zlib p7zip;
brew install --build-bottle mazmazz/srb2/sdl2_mixer --with-flac --with-mpg123;
brew postinstall sdl2 game-music-emu zlib p7zip mazmazz/srb2/sdl2_mixer;
brew install cmake||true;
fi;
fi
-
mkdir -p $HOME/srb2_cache
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment