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 20, 2023
1 parent 1b3372e commit 817bae7
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions vars/wildPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,19 @@ def call() {
container("bash") {
sh script: "test/action/test.sh", returnstatus: true
}

def appConfig = readYaml(file: "${wild_path}/config/containers-config.yaml")
def runContainerNames = ["bash", "maven"]

stash name: "init", usedefaultexcludes: false
}
}
runContainerNames = ["bash", "maven"]
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

//def runContainerConfig = containerConfig.getContainerConfig(appConfig, runContainerNames)
//def k8s_containers_run = containerConfig.generateContainerTemplate(runContainerConfig)


}
}

Expand Down

0 comments on commit 817bae7

Please sign in to comment.