mirror of https://gitlab.com/QEF/q-e.git
26 lines
373 B
YAML
26 lines
373 B
YAML
language: python
|
|
dist: trusty
|
|
python:
|
|
- "2.7"
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gfortran
|
|
- libblas-dev
|
|
- liblapack-dev
|
|
- libopenmpi-dev
|
|
- openmpi-bin
|
|
env:
|
|
- PARA=no
|
|
install:
|
|
- ./configure --enable-parallel=$PARA --with-netlib
|
|
- make pw
|
|
- make cp
|
|
- make ph
|
|
- make epw
|
|
script:
|
|
- make travis
|
|
git:
|
|
depth: 3
|
|
|