osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/28906 )
Change subject: jobs/osmocom-obs-nightly-asan.yml: new file ......................................................................
jobs/osmocom-obs-nightly-asan.yml: new file
Add a new job for generating and pushing osmocom:nightly:asan packages. I've not added it to the existing osmocom-obs.yml, as this would push it to both obs.osmocom.org and build.opensuse.org.
Related: OS#5301 Change-Id: I1c8c65bd1829baa29864ad186f3c43e79979d141 --- A jobs/osmocom-obs-nightly-asan.yml 1 file changed, 47 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/06/28906/1
diff --git a/jobs/osmocom-obs-nightly-asan.yml b/jobs/osmocom-obs-nightly-asan.yml new file mode 100644 index 0000000..35c7d9b --- /dev/null +++ b/jobs/osmocom-obs-nightly-asan.yml @@ -0,0 +1,47 @@ +--- +- project: + name: Osmocom_OBS + jobs: + - Osmocom_OBS_nightly_asan + +- job: + name: 'Osmocom_OBS_nightly_asan' + project-type: freestyle + defaults: global + description: | + See <a href="https://osmocom.org/issues/5301">OS#5301</a> for more + information. + node: obs + parameters: + - string: + name: BRANCH + description: osmo-ci.git branch + default: 'refs/remotes/origin/master' + builders: + - shell: | + export PYTHONUNBUFFERED=1 + + ./scripts/obs/update_obs_project.py \ + --apiurl obs.osmocom.org \ + --conflict-version "$(date +%Y%m%d%H%M)" \ + --docker \ + --feed nightly-asan \ + --git-fetch \ + --meta \ + osmocom:nightly:asan + scm: + - git: + branches: + - '$BRANCH' + url: git://git.osmocom.org/osmo-ci + git-config-name: 'Jenkins Builder' + git-config-email: 'jenkins@osmocom.org' + triggers: + - timed: "H 01 * * *" + + publishers: + - email: + notify-every-unstable-build: true + recipients: 'jenkins-notifications@lists.osmocom.org' + +# vim: expandtab tabstop=2 shiftwidth=2