forked from lbl-srg/BuildingsPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
79 lines (66 loc) · 1.82 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
dist: bionic
language: python
python:
- "3.6"
cache: pip
env:
global:
- MPLBACKEND=agg
notifications:
email: false
git:
depth: 3
services:
- docker
addons:
apt:
sources:
- sourceline: "deb http://build.openmodelica.org/apt `lsb_release -cs` stable"
key_url: "http://build.openmodelica.org/apt/openmodelica.asc"
packages:
- omc
- omlib-modelica-3.2.?
- tidy
before_install:
- chmod +x buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/dymola
- sudo cp buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/dymola /usr/local/bin/
- chmod +x buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/jm_ipython.sh
- sudo cp buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/jm_ipython.sh /usr/local/bin/
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- docker pull "$DOCKER_USERNAME"/travis_ubuntu-1804_dymola-2020x-x86_64
- docker pull "$DOCKER_USERNAME"/ubuntu-1804_jmodelica_trunk
- python -m pip install --upgrade pip
install:
- pip install -r requirements.txt
- pip install .
- pip install sphinx==2.1.2 \
sphinx-bootstrap-theme==0.7.1 \
sphinxcontrib-bibtex==0.4.2 \
sphinxcontrib-plantuml==0.17 \
alabaster==0.7.12 \
MarkupSafe==1.1.1 \
Pygments==2.4.2 \
snowballstemmer==1.9.0 \
docutils==0.15.2 \
Babel==2.7.0 \
requests==2.22.0 \
Jinja2==2.10.1 \
latexcodec==1.0.7 \
pybtex==0.22.2
pybtex-docutils==0.2.1 \
oset==0.1.3 \
PyYAML==5.1.2;
# Execute tests
script:
- omc --version
- make pep8 PEP8_CORRECT_CODE=true
- make doctest
- make unittest
- make doc
after_failure:
- |
for ff in `find . -name '*.log'`; do
echo "*** Content of $ff"
cat $ff
echo "*** End of $ff"
done