Skip to content

Commit

Permalink
experimental travis script
Browse files Browse the repository at this point in the history
  • Loading branch information
videlec committed Aug 1, 2017
1 parent ebe654e commit 811e9c6
Showing 1 changed file with 38 additions and 8 deletions.
46 changes: 38 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,47 @@ notifications:
slack:
on_success: never
on_failure : never
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
matrix:
include:
- python: "2.7"
env:
PARI="pari-2.9.3"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/unix/"
- python: "3.4"
env:
PARI="pari-2.9.3"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/unix/"
- python: "3.5"
env:
PARI="pari-2.9.3"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/unix/"
- python: "3.6"
env:
PARI="pari-2.9.3"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/unix/"
- python: "2.7"
env:
PARI="pari-2.10-1106-g0cf3527"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/snapshots/"
- python: "3.6"
env:
PARI="pari-2.10-1106-g0cf3527"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/snapshots/"
- python: "2.7"
env:
PARI="pari-2.10.0.A2017b"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/snapshots/"
- python: "3.6"
env:
PARI="pari-2.10.0.A2017b"
PARI_URL_PATH="http://pari.math.u-bordeaux.fr/pub/pari/snapshots/"
# non python dependencies
before_install:
- PARI_TARBALL="${PARI}.tar.gz"
- sudo apt-get -qq update
- wget http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.9.3.tar.gz
- tar xf pari-2.9.3.tar.gz
- cd pari-2.9.3/
- wget ${PARI_URL_PATH}/${PARI_TARBALL}
- tar xf ${PARI_TARBALL}
- cd ${PARI}
- ./Configure --prefix=/usr/
- make gp
- sudo make install
Expand Down

0 comments on commit 811e9c6

Please sign in to comment.