qp2_ci/.drone.yml
Anthony Scemama 2484c43484
Some checks failed
continuous-integration/drone/push Build is failing
github https
2022-05-19 14:33:02 +02:00

111 lines
2.7 KiB
YAML

---
kind: pipeline
type: docker
name: configuration
clone:
depth: 10
steps:
- name: master
image: scemama666/qp2_env
commands:
- git clone https://github.com/QuantumPackage/qp2.git --depth=10 --branch=master
- bash -c "cd qp2 ; exec ./configure -i all"
---
kind: pipeline
type: docker
name: master
clone:
depth: 10
steps:
- name: git pull master
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; git checkout master"
- bash -c "cd /qp2 ; git pull"
- name: configure debug
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; exec ./configure -c ./config/gfortran_debug.cfg"
- bash -c "source /qp2/quantum_package.rc ; exec qp_plugins download https://gitlab.com/scemama/qp_plugins_scemama"
- bash -c "source /qp2/quantum_package.rc ; exec qp_plugins install champ"
- name: compile debug
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; source quantum_package.rc ; exec ninja"
- name: testing debug
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; source quantum_package.rc ; TRAVIS=1 exec qp_test -a"
- name: configure fast
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; exec ./configure -c ./config/gfortran_avx.cfg"
- name: compile fast
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; source quantum_package.rc ; exec ninja"
- name: testing
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; source quantum_package.rc ; TRAVIS=1 exec qp_test -a"
---
kind: pipeline
type: docker
name: dev
clone:
depth: 10
steps:
- name: git pull master
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; git checkout dev"
- bash -c "cd /qp2 ; git pull"
- name: configure debug
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; exec ./configure -c ./config/gfortran_debug.cfg"
- bash -c "source /qp2/quantum_package.rc ; exec qp_plugins download https://gitlab.com/scemama/qp_plugins_scemama"
- bash -c "source /qp2/quantum_package.rc ; exec qp_plugins install champ"
- name: compile debug
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; source quantum_package.rc ; exec ninja"
- name: testing debug
image: scemama666/qp2_configured
commands:
- bash -c "cd /qp2 ; source quantum_package.rc ; TRAVIS=1 exec qp_test -a"
# - name: notify
# image: drillster/drone-email
# settings:
# host:
# from_secret: hostname # irsamc.ups-tlse.fr
# from:
# from_secret: from # drone@irssv7.ups-tlse.fr
# recipients:
# from_secret: recipients # scemama@irsamc.ups-tlse.fr
# when:
# status: [changed, failure]