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:
parent
7937b4bac7
commit
f2a6d85321
|
|
@ -1,6 +1,9 @@
|
||||||
pipelineJob('nwl') {
|
pipelineJob('nwl') {
|
||||||
displayName('1. NWL CI Pipeline')
|
displayName('1. NWL CI Pipeline')
|
||||||
description('CI pipeline for the NetModule Wireless Linux')
|
description('CI pipeline for the NetModule Wireless Linux')
|
||||||
|
authorization {
|
||||||
|
permissionAll('anonymous')
|
||||||
|
}
|
||||||
authenticationToken('buildNwlToken')
|
authenticationToken('buildNwlToken')
|
||||||
logRotator {
|
logRotator {
|
||||||
artifactDaysToKeep(7)
|
artifactDaysToKeep(7)
|
||||||
|
|
@ -32,6 +35,9 @@ pipelineJob('nwl') {
|
||||||
pipelineJob('nwl-target') {
|
pipelineJob('nwl-target') {
|
||||||
displayName('2. NWL Yocto Build')
|
displayName('2. NWL Yocto Build')
|
||||||
description('CI pipeline building a NetModule Wireless Linux Yocto Target')
|
description('CI pipeline building a NetModule Wireless Linux Yocto Target')
|
||||||
|
authorization {
|
||||||
|
permissionAll('anonymous')
|
||||||
|
}
|
||||||
authenticationToken('buildNwlToken')
|
authenticationToken('buildNwlToken')
|
||||||
logRotator {
|
logRotator {
|
||||||
artifactDaysToKeep(7)
|
artifactDaysToKeep(7)
|
||||||
|
|
@ -63,6 +69,9 @@ pipelineJob('nwl-target') {
|
||||||
pipelineJob('doc') {
|
pipelineJob('doc') {
|
||||||
displayName('Documentation')
|
displayName('Documentation')
|
||||||
description('Builds the Documentation of the work concerning NWL CI')
|
description('Builds the Documentation of the work concerning NWL CI')
|
||||||
|
authorization {
|
||||||
|
permissionAll('anonymous')
|
||||||
|
}
|
||||||
authenticationToken('buildDocToken')
|
authenticationToken('buildDocToken')
|
||||||
logRotator {
|
logRotator {
|
||||||
artifactDaysToKeep(7)
|
artifactDaysToKeep(7)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue