From f2a6d85321c01449ee151aeddd7c5bcfe2ddcfb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Mattm=C3=BCller?= Date: Mon, 28 Aug 2023 13:29:11 +0200 Subject: [PATCH] jobs/seed: let the seeded jobs run anonymous MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the reason is simple: There are currently still two AD's available for HAC and Netmodule, i.e. the LDAP connection works only for HAC employees. Signed-off-by: Marc Mattmüller --- jobs/Jenkinsfile_Seed | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/jobs/Jenkinsfile_Seed b/jobs/Jenkinsfile_Seed index 8dd808a..5f4ba1b 100644 --- a/jobs/Jenkinsfile_Seed +++ b/jobs/Jenkinsfile_Seed @@ -1,6 +1,9 @@ pipelineJob('nwl') { displayName('1. NWL CI Pipeline') description('CI pipeline for the NetModule Wireless Linux') + authorization { + permissionAll('anonymous') + } authenticationToken('buildNwlToken') logRotator { artifactDaysToKeep(7) @@ -32,6 +35,9 @@ pipelineJob('nwl') { pipelineJob('nwl-target') { displayName('2. NWL Yocto Build') description('CI pipeline building a NetModule Wireless Linux Yocto Target') + authorization { + permissionAll('anonymous') + } authenticationToken('buildNwlToken') logRotator { artifactDaysToKeep(7) @@ -63,6 +69,9 @@ pipelineJob('nwl-target') { pipelineJob('doc') { displayName('Documentation') description('Builds the Documentation of the work concerning NWL CI') + authorization { + permissionAll('anonymous') + } authenticationToken('buildDocToken') logRotator { artifactDaysToKeep(7)