-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
47 lines (43 loc) · 878 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
dist: bionic
julia:
- 1.0
- 1.6
- nightly
notifications:
email: false
git:
depth: 99999999
## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia: nightly
addons:
apt: # apt-get for linux
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
- cmake
- libboost-all-dev
- build-essential
- zlib1g-dev
- libsdl2-dev
- libjpeg-dev
- nasm
- tar
- libbz2-dev
- libgtk2.0-dev
- git
- libfluidsynth-dev
- libgme-dev
- libopenal-dev
- timidity
- libwildmidi-dev
- unzip
env:
- CC=gcc-7 && CXX=g++-7
script:
- julia -e 'using Pkg; Pkg.activate(pwd()); Pkg.instantiate(); Pkg.build("ViZDoom");'