forked from Farama-Foundation/Arcade-Learning-Environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (27 loc) · 753 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
sudo: false
language: cpp
#before_install:
# - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
# - sudo apt-get update
#
# Disabling SDL for the time being
#install:
# - sudo apt-get install libsdl1.2-dev
# Need 4.8 for C++11 support. This seems to be the easiest solution according to
# the internet (mostly from C. Dunn's blog post).
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- clang
compiler:
- g++
- clang
script:
# - cmake -DUSE_SDL=ON -DUSE_RLGLUE=OFF -DBUILD_EXAMPLES=ON
- cmake -DUSE_SDL=OFF -DUSE_RLGLUE=OFF -DBUILD_EXAMPLES=OFF
- make -j 4