Compare commits

...

2 Commits

Author SHA1 Message Date
7a51be321f Fix drone
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is failing
2022-05-19 15:24:36 +02:00
293f554394 Fix drone
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2022-05-19 15:22:38 +02:00

View File

@ -1,49 +1,49 @@
---
kind: pipeline
type: docker
name: configuration
name: main
clone:
depth: 10
steps:
- name: clone
- name: git
image: scemama666/qp2_env
commands:
- git clone https://github.com/QuantumPackage/qp2.git --depth=10 --branch=${DRONE_SOURCE_BRANCH}
- bash -c "cd qp2 ; ls -l ; git log"
- bash -c "cd qp2 ; exec ./configure -i all"
- name: configure_debug
- name: debug_configure
image: scemama666/qp2_env
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
- name: debug_compile
image: scemama666/qp2_env
commands:
- bash -c "cd qp2 ; source quantum_package.rc ; exec ninja"
- name: test
- name: debug_test
image: scemama666/qp2_env
commands:
- bash -c "cd qp2 ; source quantum_package.rc ; TRAVIS=1 exec qp_test -a"
- name: configure_fast
- name: fast_configure
image: scemama666/qp2_env
commands:
- bash -c "cd qp2 ; exec ./configure -c ./config/gfortran_avx.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
- name: fast_compile
image: scemama666/qp2_env
commands:
- bash -c "cd qp2 ; source quantum_package.rc ; exec ninja"
- name: test
- name: fast_test
image: scemama666/qp2_env
commands:
- bash -c "cd qp2 ; source quantum_package.rc ; exec qp_test -a"