[PATCH] osmo-ci[master]: jenkins: add osmo-gsm-tester_run-{prod,rnd}

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

lynxis lazus gerrit-no-reply at lists.osmocom.org
Tue Mar 27 11:30:31 UTC 2018


Hello Pau Espin Pedrol, Neels Hofmeyr, Harald Welte,

I'd like you to reexamine a change.  Please visit

    https://gerrit.osmocom.org/7021

to look at the new patch set (#6).

jenkins: add osmo-gsm-tester_run-{prod,rnd}

Both jobs doing the actual test run on the prod or rnd tester.

Change-Id: Ic1c4babc547f48402b0bcfaf38e2734e87e565f0
---
A jobs/osmo-gsm-tester-runner.yml
A jobs/osmo-gsm-tester_run-prod.sh
A jobs/osmo-gsm-tester_run-rnd.sh
3 files changed, 146 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/21/7021/6

diff --git a/jobs/osmo-gsm-tester-runner.yml b/jobs/osmo-gsm-tester-runner.yml
new file mode 100644
index 0000000..5221b9a
--- /dev/null
+++ b/jobs/osmo-gsm-tester-runner.yml
@@ -0,0 +1,118 @@
+## run jobs
+- project:
+    name: osmo-gsm-testers-runner
+    stage:
+      - prod
+      - rnd
+    jobs:
+      - 'osmo-gsm-tester_run-{stage}'
+
+# The repo must be used seperate to workaround the bug "Can not expand OSMO_GSM_TESTER_BRANCH".
+# The safe-guard check to not use un-defined variables seems to be broken.
+- scm:
+    name: osmo-gsm-tester-repo
+    scm:
+      - git:
+          url: git://git.osmocom.org/osmo-gsm-tester
+          branches:
+            - ${OSMO_GSM_TESTER_BRANCH}
+          wipe-workspace: false
+          skip-tag: true
+          basedir: osmo-gsm-tester
+
+- builder:
+    name: copy_artifact
+    builders:
+      - copyartifact:
+          project: '{repo}'
+          filter: '*.tgz, *.md5'
+          which-build: last-successful
+          stable: true
+
+# all artifact in one place
+- builder:
+    name: copy_artifact_all
+    builders:
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-bsc
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-bts
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-ggsn
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-hlr
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-mgw
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-msc
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-pcu
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-sgsn
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-trx
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-nitb
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-stp
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-bts-sysmo
+      - copy_artifact:
+         repo: osmo-gsm-tester_build-osmo-pcu-sysmo
+
+- defaults:
+    name: runner
+    description: 'Run an actual GSM hardware test using the binaries from the osmo-gsm-tester_build* jobs'
+    node: 'osmo-gsm-tester-prod'
+    project-type: freestyle
+    properties:
+      - build-discarder:
+          num-to-keep: 60
+    parameters:
+      - string:
+          name: "OSMO_GSM_TESTER_BRANCH"
+          default: "origin/master"
+          description: "Which branch/sha should be used for testing"
+      - string:
+          name: "OSMO_GSM_TESTER_OPTS"
+          default: ""
+          description: "pass additional command line options to osmo-gsm-tester.py, e.g. to select specific suites:scenarios. Default: leave empty."
+
+- job-template:
+    name: 'osmo-gsm-tester_run-{stage}'
+    defaults: runner
+    node: 'osmo-gsm-tester-{stage}'
+    triggers:
+      - timed: "H H/2 * * *"
+      - pollscm:
+          cron: "H/5 * * * *"
+      - reverse:
+            jobs:
+                - osmo-gsm-tester_build-osmo-bsc
+                - osmo-gsm-tester_build-osmo-bts
+                - osmo-gsm-tester_build-osmo-ggsn
+                - osmo-gsm-tester_build-osmo-hlr
+                - osmo-gsm-tester_build-osmo-mgw
+                - osmo-gsm-tester_build-osmo-msc
+                - osmo-gsm-tester_build-osmo-pcu
+                - osmo-gsm-tester_build-osmo-sgsn
+                - osmo-gsm-tester_build-osmo-trx
+                - osmo-gsm-tester_build-osmo-nitb
+                - osmo-gsm-tester_build-osmo-stp
+                - osmo-gsm-tester_build-osmo-bts-sysmo
+                - osmo-gsm-tester_build-osmo-pcu-sysmo
+    builders:
+      - copy_artifact_all
+      - shell: !include-raw: osmo-gsm-tester_run-{stage}.sh
+    publishers:
+      - archive:
+          artifacts: '*-run.tgz, *-bin.tgz'
+          default-excludes: false
+      - junit:
+          results: 'trial-*/last_run/trial-*.xml'
+          allow-empty-results: true
+      - email:
+          recipients: 'pespin at sysmocom.de'
+          notify-every-unstable-build: true
+    scm:
+      - 'osmo-gsm-tester-repo'
diff --git a/jobs/osmo-gsm-tester_run-prod.sh b/jobs/osmo-gsm-tester_run-prod.sh
new file mode 100644
index 0000000..bcfe8ed
--- /dev/null
+++ b/jobs/osmo-gsm-tester_run-prod.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -e -x
+
+# On our hardware, we actually use the example configuration as-is.
+export OSMO_GSM_TESTER_CONF="$PWD/osmo-gsm-tester/example"
+
+# debug: provoke a failure
+#export OSMO_GSM_TESTER_OPTS="-s debug -t fail"
+
+unlink osmo-gsm-tester/example/resources.conf || true
+ln -s resources.conf.prod osmo-gsm-tester/example/resources.conf
+
+PATH="$PWD/osmo-gsm-tester/src:$PATH" \
+  ./osmo-gsm-tester/contrib/jenkins-run.sh
diff --git a/jobs/osmo-gsm-tester_run-rnd.sh b/jobs/osmo-gsm-tester_run-rnd.sh
new file mode 100644
index 0000000..1f8a58a
--- /dev/null
+++ b/jobs/osmo-gsm-tester_run-rnd.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -e -x
+
+# On our hardware, we actually use the example configuration as-is.
+export OSMO_GSM_TESTER_CONF="$PWD/osmo-gsm-tester/example"
+
+# debug: provoke a failure
+#export OSMO_GSM_TESTER_OPTS="-s debug -t fail"
+
+unlink osmo-gsm-tester/example/resources.conf || true
+ln -s resources.conf.rnd osmo-gsm-tester/example/resources.conf
+
+PATH="$PWD/osmo-gsm-tester/src:$PATH" \
+  ./osmo-gsm-tester/contrib/jenkins-run.sh

-- 
To view, visit https://gerrit.osmocom.org/7021
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Ic1c4babc547f48402b0bcfaf38e2734e87e565f0
Gerrit-PatchSet: 6
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Owner: lynxis lazus <lynxis at fe80.eu>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Pau Espin Pedrol <pespin at sysmocom.de>
Gerrit-Reviewer: lynxis lazus <lynxis at fe80.eu>



More information about the gerrit-log mailing list