9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-01 10:15:18 +02:00
qp2/.travis.yml

53 lines
756 B
YAML
Raw Normal View History

2019-01-25 11:39:31 +01:00
#sudo: true
#before_script:
# - sudo apt-get update -q
# - sudo apt-get remove curl
# - sudo apt-get remove zlib1g-dev
# - sudo apt-get install autoconf
# - sudo rm /usr/local/bin/bats
os: linux
dist: bionic
2019-01-25 11:39:31 +01:00
sudo: false
compiler: gfortran
addons:
apt:
packages:
- gfortran
- gcc
2020-08-26 10:11:52 +02:00
- libatlas-base-dev
2020-08-26 10:58:28 +02:00
# - liblapack-dev
# - libblas-dev
2019-01-25 16:39:19 +01:00
- wget
2019-01-25 11:39:31 +01:00
env:
- OPAMROOT=$HOME/.opam
cache:
directories:
- $HOME/.opam/
- $HOME/cache
2019-01-25 11:39:31 +01:00
language: python
python:
- "3.7"
stages:
- configuration
- compilation
- testing
jobs:
include:
- stage: configuration
2020-12-06 20:25:22 +01:00
script: travis/configuration.sh
- stage: compilation
2020-12-06 20:25:22 +01:00
script: travis/compilation.sh
- stage: testing
2020-12-06 20:25:22 +01:00
script: travis/testing.sh
2019-01-25 11:39:31 +01:00