Skip to content

Commit 72e2f81

Browse files
committed
Fix with debug.
1 parent 08939c0 commit 72e2f81

2 files changed

Lines changed: 1 addition & 12 deletions

File tree

Jenkinsfile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -321,9 +321,7 @@ try {
321321
stage('Run Integration Tests') {
322322
dir('openmpf-docker') {
323323
def composeFiles = "docker-compose.integration.test.yml:$componentComposeFiles"
324-
echo "testDataPath: $testDataPath" // DEBUG
325324
if (testDataPath) {
326-
echo "Add docker-compose.stress.test.yml" // DEBUG
327325
composeFiles = "docker-compose.stress.test.yml:$composeFiles"
328326
}
329327

@@ -343,11 +341,6 @@ try {
343341
"COMPOSE_PROJECT_NAME=openmpf_$buildId",
344342
"COMPOSE_FILE=$composeFiles"]) {
345343
try {
346-
sh "echo EXTRA_TEST_DATA_PATH: $EXTRA_TEST_DATA_PATH" // DEBUG
347-
sh "printenv"
348-
349-
// sh "export EXTRA_TEST_DATA_PATH=$testDataPath"
350-
351344
sh "docker-compose config" // DEBUG
352345
sh "docker-compose up --exit-code-from workflow-manager $scaleArgs"
353346
sh 'docker-compose down --volumes'

docker-compose.stress.test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,4 @@ version: '3.7'
2929
services:
3030
workflow-manager:
3131
volumes:
32-
- extra_data:/mpfdata:ro
33-
34-
volumes:
35-
extra_data:
36-
name: ${EXTRA_TEST_DATA_PATH}
32+
- ${EXTRA_TEST_DATA_PATH}:/mpfdata:ro

0 commit comments

Comments
 (0)