Skip to content

Commit

Permalink
Merge pull request #799 from vasole/bob
Browse files Browse the repository at this point in the history
[CI]Take fisx from wheelhouse to reduce power9 testing time.
  • Loading branch information
vasole authored Mar 30, 2021
2 parents e7132dd + bbd3637 commit 133351f
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,13 @@ script:
- pip install --upgrade pip

# Dependencies
- pip install fisx
# too slow to build fisx
- if [ "$TRAVIS_CPU_ARCH" == "ppc64le" ];
then
pip install fisx --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/;
else
pip install fisx;
fi
- if [ "$TRAVIS_CPU_ARCH" == "ppc64le" ];
then
pip install matplotlib --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/;
Expand All @@ -128,13 +134,6 @@ script:
else
pip install h5py;
fi
# too slow to build fabio
# - if [ "$TRAVIS_CPU_ARCH" == "ppc64le" ];
# then
# pip install fabio --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/;
# else
# pip install fabio;
# fi
#
#- pip install silx --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/;

Expand Down

0 comments on commit 133351f

Please sign in to comment.