10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-10-02 14:30:59 +02:00

Fixed travis

This commit is contained in:
Anthony Scemama 2018-02-08 22:16:58 +01:00
parent 5f6349e7ac
commit e44c040434
13 changed files with 6 additions and 1 deletions

View File

@ -24,6 +24,7 @@ addons:
cache: cache:
directories: directories:
- $HOME/.opam/ - $HOME/.opam/
- $HOME/lapack-release
language: python language: python
python: python:

View File

@ -1,6 +1,10 @@
#!/bin/bash -x #!/bin/bash -x
git clone https://github.com/Reference-LAPACK/lapack-release.git if [[ ! -d lapack-release ]]
then
git clone https://github.com/Reference-LAPACK/lapack-release.git
fi
cd lapack-release cd lapack-release
cp make.inc.example make.inc cp make.inc.example make.inc
make -j 8 make -j 8