From b5e2dad19647295889dda359331366c57d04e7c0 Mon Sep 17 00:00:00 2001 From: Marcel Nijenhof Date: Sun, 18 Jul 2021 14:26:53 +0200 Subject: [PATCH] Test nu op f34 en CentOS7 --- .drone.yml | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 8802511..aca2b5f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,11 +1,29 @@ --- kind: pipeline type: exec -name: default +name: CentOS7_test platform: os: linux arch: amd64 + variant: CentOS7 + +steps: +- name: Run unit test + environment: + PYTHONPATH: . + commands: + - python3 setup.py test + +--- +kind: pipeline +type: exec +name: Fedora_test + +platform: + os: linux + arch: amd64 + variant: Fedora steps: - name: Run unit test @@ -14,6 +32,16 @@ steps: commands: - python setup.py test +--- +kind: pipeline +type: exec +name: Build + +platform: + os: linux + arch: amd64 + variant: Fedora + - name: Build package files commands: - python setup.py sdist bdist_wheel @@ -29,3 +57,7 @@ steps: when: branch: - master + + depends_on: + - CentOS7_test + - Fedora_test