forked from rsnk96/Ubuntu-Setup-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
54 lines (53 loc) · 1.63 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
language: python
os: linux
jobs:
include:
- name: xenial-basic
dist: xenial
script:
- CIINSTALL=yes ./1-BasicSetUp.sh
- export PATH=/opt/anaconda3/bin:$PATH
- hash -r # To reload env vars like PATH
- conda info -a
- CIINSTALL=yes ./2-GenSoftware.sh
python: 3.7
- name: xenial-opencv
dist: xenial
script: CIINSTALL=yes ./opencvDirectInstall.sh
python: 3.7
- name: xenial-ml
dist: xenial
script: CIINSTALL=yes ./3-ML-Build.sh
python: 3.7
- name: xenial-ml-basic
dist: xenial
script: CIINSTALL=yes ./ML-Basic.sh
python: 3.7
- name: bionic-basic
dist: bionic
script:
- CIINSTALL=yes ./1-BasicSetUp.sh
- export PATH=/opt/anaconda3/bin:$PATH
- hash -r # To reload env vars like PATH
- conda info -a
- CIINSTALL=yes ./2-GenSoftware.sh
python: 3.7
- name: bionic-opencv
dist: bionic
script: CIINSTALL=yes ./opencvDirectInstall.sh
python: 3.7
- name: bionic-ml
dist: bionic
script: CIINSTALL=yes ./3-ML-Build.sh
python: 3.7
- name: bionic-ml-basic
dist: bionic
script: CIINSTALL=yes ./ML-Basic.sh
python: 3.7
before_install:
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"
- sudo apt-get update -qq
- sudo apt-get install -y software-properties-common
- sudo apt-get install -qq build-essential curl g++ python3-dev python3-setuptools
- echo 'America/Los_Angeles' | sudo tee /etc/timezone
- sudo dpkg-reconfigure --frontend noninteractive tzdata