Skip to content

Commit

Permalink
Update Jenkinsfile to remove EXPTDIR= from shell call to srw_ftest.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceKropp-Raytheon authored Jun 30, 2023
1 parent 21dd906 commit 8f7bca3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .cicd/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ pipeline {
sh 'bash --login "${WORKSPACE}/.cicd/scripts/srw_unittest.sh"'
}
}

// Run the unified build script; if successful create a tarball of the build and upload to S3
stage('Build') {
steps {
Expand All @@ -152,7 +153,7 @@ pipeline {
stage('Functional WorkflowTaskTests') {
steps {
echo "Running simple workflow script task tests on ${env.SRW_PLATFORM} (using ${env.WORKSPACE})"
sh 'bash --login "EXPTDIR=${WORKSPACE}/expt_dirs/test_community ${WORKSPACE}/.cicd/scripts/srw_ftest.sh"'
sh 'bash --login "${WORKSPACE}/.cicd/scripts/srw_ftest.sh"'
}
}

Expand Down

0 comments on commit 8f7bca3

Please sign in to comment.