jenkins: add soteria pipeline job

This commit is contained in:
Brad Stein 2026-02-02 11:01:22 -03:00
parent a7c1774044
commit 05d6ee9d6e

View File

@ -167,6 +167,32 @@ data:
}
}
}
pipelineJob('Soteria') {
properties {
pipelineTriggers {
triggers {
scmTrigger {
scmpoll_spec('H/5 * * * *')
ignorePostCommitHooks(false)
}
}
}
}
definition {
cpsScm {
scm {
git {
remote {
url('https://scm.bstein.dev/bstein/soteria.git')
credentials('gitea-pat')
}
branches('*/main')
}
}
scriptPath('Jenkinsfile')
}
}
}
pipelineJob('data-prepper') {
properties {
pipelineTriggers {