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 25, 2023
1 parent be97ca6 commit 4ca0f24
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions vars/wildPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,13 @@ def call() {
def config_containers = readYaml(file: "${wild_path}/config/k8s/containers-config.yaml")
def names_containers_run = []
container('bash') {
names_containers_run = sh '''
#!/usr/bin/env bash
source ${wild_path}/src/lib/workflow.sh
workflow::_get_workflows_containers_names ${wild_path}/test/config/workflow-default.json
names_containers_run = sh(
script: '''
#!/usr/bin/env bash
source ${wild_path}/src/lib/workflow.sh
workflow::_get_workflows_containers_names ${wild_path}/test/config/workflow-default.json
''',
returnStdout: true
returnStdout: true)
}
def config_containers_run = containerConfig.getContainerConfig(config_containers, names_containers_run)
k8s_containers_run = containerConfig.generateContainerTemplate(config_containers_run)
Expand Down

0 comments on commit 4ca0f24

Please sign in to comment.