Add travis setup

This commit is contained in:
Kristian Gregorius Hustad
2017-11-24 20:12:01 +01:00
parent 06d468b2d4
commit 24c82b9ce0
2 changed files with 37 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
language: python
python:
- "2.7"
- "3.6"
dist: trusty
#sudo: required
sudo: false
addons:
apt:
packages:
- libarmadillo-dev
before_install:
- pip install --user git+https://github.com/doconce/preprocess#egg=preprocess
- pip install --user git+https://github.com/doconce/doconce#egg=doconce
script:
- doconce --version
- cd doc/src/ && time bash make.sh && cd -
+15
View File
@@ -0,0 +1,15 @@
cwd=$(pwd)
cd Bayesian && bash make.sh Bayesian
cd ${cwd}
cd DecisionTrees && bash make.sh DecisionTrees
cd ${cwd}
cd How2ReadData && bash make.sh How2ReadData
cd ${cwd}
cd NeuralNet && bash make.sh NeuralNet
cd ${cwd}
cd Regression && bash make.sh Regression
cd ${cwd}
cd Statistics && bash make.sh Statistics
cd ${cwd}
cd Projects/2017/Project && bash make.sh Project
cd ${cwd}