From 91f5461ceb094bae09fbbc182d6df7eb20c77246 Mon Sep 17 00:00:00 2001 From: Todor Mitev Date: Tue, 7 Jul 2026 17:45:38 +0300 Subject: [PATCH] fix: Jenkinsfile node name --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d7133c7..98f0234 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ pipeline { - agent { label 'azure-linux-ubuntu-18' } + agent { label 'aws-linuxdocker-test' } options { skipStagesAfterUnstable() disableConcurrentBuilds() @@ -22,7 +22,7 @@ pipeline { [$class: 'CloneOption', shallow: true, depth: 1, noTags: false] ], submoduleCfg: [], - userRemoteConfigs: [[credentialsId: 'github-app-podio-jm', url: 'https://github.com/podio/podio-objc.git']] + userRemoteConfigs: [[credentialsId: 'gh-podio-app', url: 'https://github.com/podio/podio-objc.git']] ]) } }