Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Automatically create example images on build #80

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ julia:
- 0.6
notifications:
email: false
# backends need to install dependencies via sudo apt-get install
sudo: required
before_install:
# PGFPlots dependencies (not automatically installed)
- sudo apt-get install -y pdf2svg
- sudo apt-get install -y texlive-latex-base
- sudo apt-get install -y texlive-binaries
- sudo apt-get install -y texlive-pictures
- sudo apt-get install -y texlive-latex-extra
# GR dependencies (Ubuntu 14.04 does not have ffmpeg in official repos)
- sudo add-apt-repository -y ppa:mc3man/trusty-media
- sudo apt-get update
- sudo apt-get install -y ffmpeg
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.clone(pwd())'
Expand Down
Loading