Skip to content
Snippets Groups Projects
Commit e732bd81 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

tools/jenkins-jobs-builder: Ensure to use built-in Jenkins node

Errors can happen otherwise when executed on a different node.

This was missed when the job was turned to a pipeline one.
parent c3591a24
No related branches found
No related tags found
Loading
Pipeline #7884 failed
...@@ -6,7 +6,9 @@ if (env.gitlabMergeRequestIid) { ...@@ -6,7 +6,9 @@ if (env.gitlabMergeRequestIid) {
} }
pipeline { pipeline {
agent any agent {
label "built-in"
}
stages { stages {
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
name: jenkins-tools/{project_name} name: jenkins-tools/{project_name}
project-type: pipeline project-type: pipeline
description: Update jenkins jobs and setup GitLab webhooks description: Update jenkins jobs and setup GitLab webhooks
node: built-in
gitlab_project_name: swh/infra/ci-cd/swh-jenkins-jobs gitlab_project_name: swh/infra/ci-cd/swh-jenkins-jobs
properties: properties:
- build-discarder: - build-discarder:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment