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 kind: pipeline
type: exec type: exec
name: default name: CentOS7_test
platform: platform:
os: linux os: linux
arch: amd64 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: steps:
- name: Run unit test - name: Run unit test
@@ -14,6 +32,16 @@ steps:
commands: commands:
- python setup.py test - python setup.py test
---
kind: pipeline
type: exec
name: Build
platform:
os: linux
arch: amd64
variant: Fedora
- name: Build package files - name: Build package files
commands: commands:
- python setup.py sdist bdist_wheel - python setup.py sdist bdist_wheel
@@ -29,3 +57,7 @@ steps:
when: when:
branch: branch:
- master - master
depends_on:
- CentOS7_test
- Fedora_test