forked from fmrico/ATCSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (25 loc) · 1019 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
dist: bionic
sudo: required
before_install:
- sudo apt-add-repository "deb http://es.archive.ubuntu.com/ubuntu/ bionic main restricted"
- sudo apt-add-repository "deb http://es.archive.ubuntu.com/ubuntu/ bionic-updates main restricted"
- sudo apt-add-repository "deb http://es.archive.ubuntu.com/ubuntu/ bionic universe"
- sudo apt-add-repository "deb http://es.archive.ubuntu.com/ubuntu/ bionic-updates universe"
- sudo apt-add-repository "deb http://es.archive.ubuntu.com/ubuntu/ bionic multiverse"
- sudo apt-add-repository "deb http://es.archive.ubuntu.com/ubuntu/ bionic-updates multiverse"
- sudo apt-add-repository "deb http://es.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse"
- sudo apt-get update
- sudo apt-get install freeglut3-dev
- sudo apt-get install zeroc-ice-all-dev zeroc-ice-all-runtime
# Enable C++ support
language: cpp
# Compiler selection
compiler:
- gcc
install:
# Build steps
script:
- mkdir build
- cd build
- cmake ..
- make