forked from numenta/nupic-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (47 loc) · 2.02 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
branches:
except:
- gh-pages
language: python
compiler:
- gcc
python:
- "2.6"
env:
global:
- NUPIC=$TRAVIS_BUILD_DIR
- NTA=$HOME/nta/eng
notifications:
irc:
channels:
- "irc.freenode.net#nupic"
webhooks: http://issues.numenta.org:8081/travis
before_install:
- "source $NUPIC/env.sh"
install: "$NUPIC/build.sh"
script:
# legacy binary tests
- "$NTA/bin/htmtest"
# (not quite everything, really)
- "$NTA/bin/testeverything"
# actual unit tests
- "$NUPIC/run_tests.sh -c"
# run all example files
# examples/bindings
- "python $NUPIC/examples/bindings/sparse_matrix_how_to.py"
- "python $NUPIC/examples/bindings/sparse_pooler_how_to.py"
## - "python $NUPIC/examples/bindings/svm_how_to.py" # tkinter missing in Travis build machine
## - "python $NUPIC/examples/bindings/temporal_pooler_how_to.py" # tkinter too
# examples/opf (run atleast 1 from each category)
- "python $NUPIC/examples/opf/bin/OpfRunExperiment.py $NUPIC/examples/opf/experiments/anomaly/spatial/2field_few_skewed/"
- "python $NUPIC/examples/opf/bin/OpfRunExperiment.py $NUPIC/examples/opf/experiments/anomaly/temporal/saw_200/"
- "python $NUPIC/examples/opf/bin/OpfRunExperiment.py $NUPIC/examples/opf/experiments/classification/category_TP_1/"
- "python $NUPIC/examples/opf/bin/OpfRunExperiment.py $NUPIC/examples/opf/experiments/missing_record/simple_0/"
- "python $NUPIC/examples/opf/bin/OpfRunExperiment.py $NUPIC/examples/opf/experiments/multistep/hotgym/"
- "python $NUPIC/examples/opf/bin/OpfRunExperiment.py $NUPIC/examples/opf/experiments/opfrunexperiment_test/simpleOPF/hotgym_1hr_agg/"
# opf/experiments/params - skip now
- "python $NUPIC/examples/opf/bin/OpfRunExperiment.py $NUPIC/examples/opf/experiments/spatial_classification/category_1/"
# examples/prediction
- "python $NUPIC/examples/prediction/RunExperiment.py $NUPIC/examples/prediction/experiments/dutyCycle/problem/"
# examples/tp
- "python $NUPIC/examples/tp/hello_tp.py"
- "python $NUPIC/examples/tp/tp_test.py"