Skip to content

Commit

Permalink
ref(15): Start testing wild integration with Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanjerome committed Aug 19, 2023
1 parent 35080b6 commit 1b3372e
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions vars/wildPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ def call() {
string pod_init_label = "wild-init-1"
string pod_run_label = "wild-run-1"
def k8s_containers_init = libraryResource('config/k8s/containers-init.yaml')
def runContainerNames
def runContainerConfig
def k8s_containers_run

def colored_xterm = isColoredXterm()
def readAppConfig = load 'readAppConfig.groovy'
Expand Down Expand Up @@ -66,9 +63,9 @@ def call() {
}
}
runContainerNames = ["bash", "maven"]
appConfig = readYaml(file: "./wild-workdir/config/containers-config.yaml")
runContainerConfig = containerConfig.getContainerConfig(appConfig, runContainerNames)
k8s_containers_run = containerConfig.generateContainerTemplate(runContainerConfig)
def appConfig = readYaml(file: "./wild-workdir/config/containers-config.yaml")
def runContainerConfig = containerConfig.getContainerConfig(appConfig, runContainerNames)
def k8s_containers_run = containerConfig.generateContainerTemplate(runContainerConfig)

stash name: "init", usedefaultexcludes: false
}
Expand Down

0 comments on commit 1b3372e

Please sign in to comment.