laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/33190 )
Change subject: DAHDI master build diversification ......................................................................
DAHDI master build diversification
* we never really wanted to build against fixed tags but branches, i.e. "the latest tag within a given stable series", so switch from a fixed tag like "v5.10" in torvalds/linux.git to "linux-5.10.y" in stable/linux.git
* we also want to build against 6.1.y, as that is what upcoming debian bookwork will ship
Change-Id: Ibc0527a6f7d11c4f99c19e73c948b9baacd4e5a2 --- M jobs/master-builds-dahdi.yml 1 file changed, 33 insertions(+), 6 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/90/33190/1
diff --git a/jobs/master-builds-dahdi.yml b/jobs/master-builds-dahdi.yml index 37d48b7..7134f05 100644 --- a/jobs/master-builds-dahdi.yml +++ b/jobs/master-builds-dahdi.yml @@ -1,14 +1,25 @@ - project: - name: master-builds-dahdi-linux + name: master-builds-dahdi-linux-stable + type: stable + repo: 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git' linux-ver: - - "v4.19" - - "v5.10" + - "linux-4.19.y" + - "linux-5.10.y" + - "linux-6.1.y" + jobs: + - 'master-dahdi-linux-{type}-{linux-ver}' + +- project: + name: master-builds-dahdi-linux-torvalrds + type: torvalds + repo: 'https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git' + linux-ver: - "master" jobs: - - 'master-dahdi-linux-{linux-ver}' + - 'master-dahdi-linux-{type}-{linux-ver}'
- job-template: - name: 'master-dahdi-linux-{linux-ver}' + name: 'master-dahdi-linux-{type}-{linux-ver}' project-type: freestyle node: osmocom-master concurrent: true @@ -31,7 +42,7 @@ # the shell part below. - git: basedir: 'linux' - url: 'https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git' + url: '{repo}' branches: - '{linux-ver}' refspec: '{linux-ver}'