-
Notifications
You must be signed in to change notification settings - Fork 97
/
.travis.yml
126 lines (109 loc) · 2.5 KB
/
.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
sudo: true
dist: trusty
language: cpp
# https://docs.travis-ci.com/user/languages/cpp/
# Test on multiple GCC and Clang versions
matrix:
include:
# works on Precise and Trusty
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- cmake
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
# works on Precise and Trusty
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- cmake
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
# works on Precise and Trusty
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- cmake
env:
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
# works on Trusty
- os: linux
addons:
apt:
sources:
- llvm-toolchain-trusty-3.9
packages:
- clang-3.9
- cmake
env:
- MATRIX_EVAL="CC=clang-3.9 && CXX=clang++-3.9"
# works on Trusty
- os: linux
addons:
apt:
sources:
- llvm-toolchain-trusty-4.0
packages:
- clang-4.0
- cmake
env:
- MATRIX_EVAL="CC=clang-4.0 && CXX=clang++-4.0"
before_install:
- eval "${MATRIX_EVAL}"
script:
# build game environment
- cd environment/
- cmake .
- make -j2
# build C++ bot
- cd ../airesources/C++
- cmake .
- make -j2
# build scala bot
# - sudo apt-get install scala
# - cd ../Scala
# - scalac MyBot.scala hlt/*
# build Rust bot
- cd ../Rust
- curl -sSf https://static.rust-lang.org/rustup.sh | sh
- cargo rustc --release -q -- -Awarnings
# build Java bot
- cd ../Java
- javac MyBot.java
# compile Python script
- cd ../Python3
- python -m py_compile MyBot.py
# compile mlstarterbot script
- cd ../ML-StarterBot-Python
- python -m py_compile MyBot.py
# build website
- cd ../../website
- npm config set package-lock false
- gem install bundler
- bundle install --path=vendor/bundle
- npm install
- cd ../libhaliteviz
- npm install
- cd ../website
- npm run build
- bundle exec jekyll build
# build standalone visualizer
- cd ../tools/standalone_visualizer
- npm install
- cd ../../website
- bundle exec jekyll build
- cd ../tools/standalone_visualizer
- npm run build
- npm run package-linux