Skip to content

Commit a9f19a4

Browse files
authored
Fix Travis script for master branch
1 parent 5daa6e0 commit a9f19a4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ matrix:
6161
script:
6262
- export PRIMITIV_PYTHON_BUILD_NUMBER="${TRAVIS_BUILD_NUMBER}";
6363
- pip install cython numpy scikit-build twine
64-
- $TRAVIS_BUILD_DIR/setup.py sdist --bundle-core-library
64+
- wget "http://bitbucket.org/eigen/eigen/get/3.3.4.tar.bz2" -O eigen-downloaded.tar.gz
65+
- mkdir ./eigen-downloaded
66+
- tar xf ./eigen-downloaded.tar.gz --strip-components=1 -C ./eigen-downloaded
67+
- $TRAVIS_BUILD_DIR/setup.py sdist --bundle-core-library --bundle-eigen-headers ./eigen-downloaded
6568
deploy:
6669
skip_cleanup: true
6770
provider: script

0 commit comments

Comments
 (0)