0
0
mirror of https://github.com/thegeeklab/corenetworks.git synced 2024-06-02 16:59:41 +02:00

use conditional build containers

This commit is contained in:
Robert Kaussow 2021-02-18 22:07:02 +01:00
parent f32dfef07c
commit 7b35b71028
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
2 changed files with 9 additions and 1 deletions

View File

@ -33,6 +33,7 @@ local PipelineLint = {
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry config experimental.new-installer false',
'poetry install',
'poetry run yapf -dr ./corenetworks',
],
@ -46,6 +47,7 @@ local PipelineLint = {
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry config experimental.new-installer false',
'poetry install',
'poetry run flake8 ./corenetworks',
],
@ -119,6 +121,7 @@ local PipelineSecurity = {
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry config experimental.new-installer false',
'poetry install',
'poetry run bandit -r ./corenetworks -x ./corenetworks/test',
],
@ -215,6 +218,7 @@ local PipelineDocs = {
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry config experimental.new-installer false',
'poetry install',
'make doc',
],

View File

@ -12,6 +12,7 @@ steps:
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
- poetry run yapf -dr ./corenetworks
environment:
@ -22,6 +23,7 @@ steps:
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
- poetry run flake8 ./corenetworks
environment:
@ -137,6 +139,7 @@ steps:
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
- poetry run bandit -r ./corenetworks -x ./corenetworks/test
environment:
@ -230,6 +233,7 @@ steps:
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
- make doc
@ -340,6 +344,6 @@ depends_on:
---
kind: signature
hmac: 091781879e0ddffbfd4c725547d3d798772dca209b98f3319bca5bd37415dd6f
hmac: 18dfddcae247d4316e27cedf260d08fb2e3bef8a91f9bbd8db1d43a897299a88
...