--- kind: pipeline type: docker name: configuration clone: depth: 10 steps: - name: clone 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 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_debug image: scemama666/qp2_env commands: - bash -c "cd qp2 ; source quantum_package.rc ; exec ninja" - name: test_debug image: scemama666/qp2_env commands: - bash -c "cd qp2 ; source quantum_package.rc ; TRAVIS=1 exec qp_test -a" - name: configure_fast 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_fast image: scemama666/qp2_env commands: - bash -c "cd qp2 ; source quantum_package.rc ; exec ninja" - name: test_fast image: scemama666/qp2_env commands: - bash -c "cd qp2 ; source quantum_package.rc ; exec qp_test -a"