Skip to content

Commit

Permalink
jenkins: Update kernel jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Geoff Levand <[email protected]>
  • Loading branch information
glevand committed Dec 26, 2022
1 parent 6957c5b commit d534c67
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions jenkins/job-setup/job-setup.groovy
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/*
* Create TDD CI jobs on a Jenkins server.
* Create TDD jobs on a Jenkins server.
*
* This entire script can be pasted directly into the text box found at
* ${JENKINS_URL}/script to populate the server with jobs
* ${JENKINS_URL}/manage/script to populate the server with jobs.
*
* Note that settings such as user permissions and secret credentials
* are not handled by this script.
*/

final String REPO_URL = 'https://github.com/glevand/tdd-project.git'
final String REPO_JOB_PATH = 'jenkins/jobs'
final String REPO_BRANCH = 'dev'
final String BASE_FOLDER = 'tdd-dev'
\
final String REPO_BRANCH = 'master'
final String BASE_FOLDER = 'tdd-project'

/*
* Create a new folder project under the given parent model.
*/
Expand Down Expand Up @@ -115,13 +115,13 @@ def jobs = [
description: 'Polls linux-next for changes. Builds kernel and runs a boot test in QEMU.',
script: '/kernel/linux-next-trigger.groovy',
folder: f_kernel],
4: [name: 'linux-4.19.y-stable-trigger',
4: [name: 'linux-5.15.y-stable-trigger',
description: 'Polls linux-stable for changes. Builds kernel and runs a boot test in QEMU.',
script: '/kernel/linux-4.19.y-stable-trigger.groovy',
script: '/kernel/linux-5.15.y-stable-trigger.groovy',
folder: f_kernel],
5: [name: 'linux-4.20.y-stable-trigger',
5: [name: 'linux-6.1.y-stable-trigger',
description: 'Polls linux-stable for changes. Builds kernel and runs a boot test in QEMU.',
script: '/kernel/linux-4.20.y-stable-trigger.groovy',
script: '/kernel/linux-6.1.y-stable-trigger.groovy',
folder: f_kernel],
6: [name: 'f29-installer-test',
description: 'Test of latest Fedora 29 pxeboot installer.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ script {

kernelTrigger {
git_url = 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git'
git_branch = 'linux-4.19.y'
git_branch = 'linux-5.15.y'
cron_spec = 'H H/6 * * *' // Every 6 Hrs.
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ script {

kernelTrigger {
git_url = 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git'
git_branch = 'linux-4.20.y'
git_branch = 'linux-6.1.y'
cron_spec = 'H H/6 * * *' // Every 6 Hrs.
}

0 comments on commit d534c67

Please sign in to comment.