forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TST: add Bento build to Travis CI runs.
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export CI_ROOT=$PWD | ||
cd .. | ||
|
||
# Waf | ||
wget http://waf.googlecode.com/files/waf-1.7.13.tar.bz2 | ||
tar xjvf waf-1.7.13.tar.bz2 | ||
cd waf-1.7.13 | ||
python waf-light | ||
export WAFDIR=$PWD | ||
cd .. | ||
|
||
# Bento | ||
wget https://github.com/cournape/Bento/archive/master.zip | ||
unzip master.zip | ||
cd Bento-master | ||
python bootstrap.py | ||
export BENTO_ROOT=$PWD | ||
cd .. | ||
|
||
cd $CI_ROOT | ||
|
||
# In-place numpy build | ||
$BENTO_ROOT/bentomaker build -i -j | ||
# Prepend to PYTHONPATH so tests can be run | ||
export PYTHONPATH=$PWD:$PYTHONPATH | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters