Test nu op f34 en CentOS7

This commit is contained in:
Marcel Nijenhof
2021-07-18 14:26:53 +02:00
parent fe564e5721
commit b5e2dad196

View File

@@ -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