Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • P PyAV
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 37
    • Issues 37
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 26
    • Merge requests 26
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • PyAV
  • PyAV
  • Merge requests
  • !481
An error occurred while fetching the assigned milestone of the selected merge_request.

[travis] use homebrew addon instead of calling homebrew ourselves

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Jeremy Lainé requested to merge github/fork/jlaine/homebrew-addon into develop 6 years ago
  • Overview 1
  • Commits 1
  • Pipelines 0
  • Changes 2

This should speed up run times.

Compare
  • develop (base)

and
  • latest version
    c3eba732
    1 commit, 2 years ago

2 files
+ 16
- 27

    Preferences

    File browser
    Compare changes
scr‎ipts‎
travis‎-setup‎ +0 -26
.trav‎is.yml‎ +16 -1
scripts/travis-setup deleted 100755 → 0
+ 0
- 26
  • View file @ ea27a69e

#!/bin/bash
if [[ ! "$TRAVIS" ]]; then
echo "This isn't travis..."
exit 1
fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
echo Updating homebrew
brew update
echo
echo Installing library dependencies
brew install libjpeg libpng # For pillow.
# We will use our own ffmpeg, but this is the easiest way for us
# to get all of the dependencies. When we were also installing `ffmpeg`
# we were getting quite a bit of segfaulting on Travis. We're not sure
# what was happening there.
brew install ffmpeg --only-dependencies
echo
fi
.travis.yml
+ 16
- 1
  • View file @ c3eba732

  • Edit in single-file editor

  • Open in Web IDE


@@ -23,6 +23,22 @@ addons:
@@ -23,6 +23,22 @@ addons:
- wget
- wget
- yasm
- yasm
- zlib1g-dev
- zlib1g-dev
 
homebrew:
 
packages:
 
- automake
 
- libass
 
- libjpeg
 
- libpng
 
- libtool
 
- libvorbis
 
- libvpx
 
- nasm
 
- opus
 
- shtool
 
- texi2html
 
- theora
 
- wget
 
- x264
cache:
cache:
directories:
directories:
@@ -122,7 +138,6 @@ matrix:
@@ -122,7 +138,6 @@ matrix:
before_install:
before_install:
- scripts/travis-setup
- scripts/build-deps
- scripts/build-deps
install:
install:
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
0
0 participants
Reference:
Source branch: github/fork/jlaine/homebrew-addon

Menu

Explore Projects Groups Snippets