|
|
@ -21,13 +21,27 @@ run() { |
|
|
|
travis_fold start build_pycarl |
|
|
|
git clone https://github.com/moves-rwth/pycarl.git |
|
|
|
cd pycarl |
|
|
|
python setup.py build_ext -j 1 develop |
|
|
|
case "$CONFIG" in |
|
|
|
Debug*) |
|
|
|
python setup.py build_ext --develop -j 1 develop |
|
|
|
;; |
|
|
|
*) |
|
|
|
python setup.py build_ext -j 1 develop |
|
|
|
;; |
|
|
|
esac |
|
|
|
travis_fold end build_pycarl |
|
|
|
cd .. |
|
|
|
|
|
|
|
# Build stormpy |
|
|
|
travis_fold start build_stormpy |
|
|
|
python setup.py build_ext -j 1 develop |
|
|
|
case "$CONFIG" in |
|
|
|
Debug*) |
|
|
|
python setup.py build_ext --develop -j 1 develop |
|
|
|
;; |
|
|
|
*) |
|
|
|
python setup.py build_ext -j 1 develop |
|
|
|
;; |
|
|
|
esac |
|
|
|
travis_fold end build_stormpy |
|
|
|
|
|
|
|
# Perform task |
|
|
|