forked from rdeits/DynamicWalking2018.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
24 lines (23 loc) · 843 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
sudo: true
dist: trusty
os:
- linux
julia:
- 0.6
git:
depth: 99999999999
notifications:
email: false
branches:
only: master
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install gcc gfortran -y ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:mc3man/trusty-media && sudo apt-get update && sudo apt-get install -y ffmpeg && ffmpeg -version ; fi
- export PYTHON=""
- julia -e 'Pkg.add("Conda"); using Conda; Conda.add("numpy")'
# uncomment the following lines to override the default test script
# script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("DynamicWalking2018"); Pkg.test("DynamicWalking2018"; coverage=true)'