mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 22:13:38 +01:00
Anthony Scemama
75dca5f9b5
Some checks reported errors
continuous-integration/drone/push Build was killed
29 lines
584 B
YAML
29 lines
584 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
clone:
|
|
depth: 10
|
|
|
|
steps:
|
|
|
|
- name: configure
|
|
image: scemama666/qp2_env
|
|
commands:
|
|
- ./configure -i all -c ./config/gfortran_debug.cfg
|
|
- bash -c "source quantum_package.rc ; qp plugins download https://gitlab.com/scemama/qp_plugins_scemama"
|
|
- bash -c "source quantum_package.rc ; qp plugins install champ"
|
|
|
|
- name: compile
|
|
image: scemama666/qp2_env
|
|
commands:
|
|
- bash -c "source quantum_package.rc ; exec ninja"
|
|
|
|
- name: testing
|
|
image: scemama666/qp2_env
|
|
commands:
|
|
- bash -c "source quantum_package.rc ; qp test -a"
|
|
|
|
|