Merge branch 'dev' into 8217_mapper
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
commit
c7eadf2ceb
|
@ -128,7 +128,7 @@ pipeline {
|
|||
def modules = sh(script: 'node test/cypress/docker/find/find.js', returnStdout: true).trim()
|
||||
echo "E2E MODULES: ${modules}"
|
||||
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
|
||||
sh "sh test/cypress/docker/cypressParallel.sh 1"
|
||||
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ async function getChangedModules() {
|
|||
if (change.startsWith(E2E_PATH)) changedArray.push(change);
|
||||
changedModules = new Set(changedArray);
|
||||
}
|
||||
return [...changedModules].join(' ');
|
||||
return [...changedModules].join('\n');
|
||||
}
|
||||
|
||||
getChangedModules()
|
||||
|
|
|
@ -44,6 +44,6 @@ docker run -it --rm \
|
|||
-e CI \
|
||||
-e TZ \
|
||||
lilium-dev \
|
||||
bash -c "sh test/cypress/docker/cypressParallel.sh 2 $files"
|
||||
bash -c "sh test/cypress/docker/cypressParallel.sh 2 '$files'"
|
||||
|
||||
cleanup
|
||||
|
|
Loading…
Reference in New Issue