jobs/seed: let the seeded jobs run anonymous

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 <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmüller 2023-08-28 13:29:11 +02:00
parent 7937b4bac7
commit f2a6d85321
1 changed files with 9 additions and 0 deletions

View File

@ -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)