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
No related merge requests found
Pipeline #7873 passed
......@@ -6,7 +6,9 @@ if (env.gitlabMergeRequestIid) {
}
pipeline {
agent any
agent {
label "built-in"
}
stages {
......
......@@ -2,7 +2,6 @@
name: jenkins-tools/{project_name}
project-type: pipeline
description: Update jenkins jobs and setup GitLab webhooks
node: built-in
gitlab_project_name: swh/infra/ci-cd/swh-jenkins-jobs
properties:
- 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