qp2/.drone.yml

53 lines
1.0 KiB
YAML
Raw Normal View History

2022-04-12 17:29:29 +02:00
---
2022-04-12 17:25:48 +02:00
kind: pipeline
2022-04-13 23:58:55 +02:00
type: docker
2022-04-19 10:13:38 +02:00
name: gfortran-debug
2022-04-12 17:25:48 +02:00
clone:
depth: 10
steps:
2022-04-13 23:58:55 +02:00
2022-04-12 17:25:48 +02:00
- name: configure
2022-04-14 01:15:21 +02:00
image: scemama666/qp2_env
2022-04-12 17:25:48 +02:00
commands:
- ./configure -i all -c ./config/gfortran_debug.cfg
2022-04-19 10:09:22 +02:00
- bash -c "source quantum_package.rc ; exec qp_plugins download https://gitlab.com/scemama/qp_plugins_scemama"
- bash -c "source quantum_package.rc ; exec qp_plugins install champ"
2022-04-12 17:25:48 +02:00
- name: compile
2022-04-14 01:15:21 +02:00
image: scemama666/qp2_env
2022-04-12 17:25:48 +02:00
commands:
2022-04-14 01:15:21 +02:00
- bash -c "source quantum_package.rc ; exec ninja"
2022-04-12 17:25:48 +02:00
- name: testing
2022-04-14 01:15:21 +02:00
image: scemama666/qp2_env
2022-04-12 17:25:48 +02:00
commands:
2022-04-19 10:09:22 +02:00
- bash -c "source quantum_package.rc ; TRAVIS=1 exec qp_test -a"
2022-04-12 17:25:48 +02:00
2022-04-19 10:13:38 +02:00
---
kind: pipeline
type: docker
name: gfortran-avx
clone:
depth: 10
2022-04-12 17:25:48 +02:00
2022-04-19 10:13:38 +02:00
steps:
- name: configure
image: scemama666/qp2_env
2022-04-19 10:04:39 +02:00
commands:
- ./configure -i all -c ./config/gfortran_avx.cfg
- name: compile
2022-04-19 10:13:38 +02:00
image: scemama666/qp2_env
2022-04-19 10:04:39 +02:00
commands:
2022-04-19 10:09:22 +02:00
- bash -c "source quantum_package.rc ; exec ninja"
2022-04-19 10:04:39 +02:00
- name: testing
2022-04-19 10:13:38 +02:00
image: scemama666/qp2_env
2022-04-19 10:04:39 +02:00
commands:
2022-04-19 10:09:22 +02:00
- bash -c "source quantum_package.rc ; exec qp_test -a"
2022-04-19 10:04:39 +02:00