fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/42660?usp=email )
Change subject: jobs/master-builds.yml: pysim: separate JOB_TYPE for card tests ......................................................................
jobs/master-builds.yml: pysim: separate JOB_TYPE for card tests
Change-Id: Ia48d1b468f65d7c2e6b4128eeac36d0f3d03c45e Depends: pysim.git If76d812ee43b7eb3b57fdc660c60bf31fbff5b16 --- M jobs/master-builds.yml 1 file changed, 4 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/60/42660/1
diff --git a/jobs/master-builds.yml b/jobs/master-builds.yml index e34f2f0..0ef69ef 100644 --- a/jobs/master-builds.yml +++ b/jobs/master-builds.yml @@ -639,14 +639,15 @@ concurrent: false slave_axis: !!python/tuple [simtester,osmocom-master] a2_name: JOB_TYPE - a2: !!python/tuple ["test", "pylint", "docs"] + a2: !!python/tuple ["test", "card-test", "pylint", "docs"] combination_filter: > - (JOB_TYPE == "test" && label == "simtester") || + (JOB_TYPE == "test" && label == "osmocom-master") || + (JOB_TYPE == "crad-test" && label == "simtester") || (JOB_TYPE == "pylint" && label == "osmocom-master") || (JOB_TYPE == "docs" && label == "osmocom-master") cmd: | case "$JOB_TYPE" in - "test") + "card-test") {timeout_cmd} ./contrib/jenkins.sh ;; *)