Advertisement
PandaAcademy

app_of_apps.groovy

May 28th, 2022 (edited)
1,096
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.60 KB | None | 0 0
  1. pipelineJob('app_of_apps') {
  2.     parameters {
  3.         stringParam('backendDockerTag', 'latest', 'Backend docker image tag')
  4.         stringParam('frontendDockerTag', 'latest', 'Frontend docker image tag')
  5.     }
  6.  
  7.     definition {
  8.         cpsScm {
  9.             scm {
  10.                 git {
  11.                     remote {
  12.                         credentials("")
  13.                         url("https://github.com/Panda-Academy-Core-2-0/App_of_apps")
  14.                     }
  15.                     branches('main')
  16.                     scriptPath('Jenkinsfile')
  17.                 }
  18.             }
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement