Skip to content
Snippets Groups Projects
Commit c752d1a6 authored by Guillaume Samson's avatar Guillaume Samson :snowman2:
Browse files

Merge branch '61-continuous-integration-tests-with-sette' into 'main'

Resolve "continuous integration tests with SETTE"

Closes #61

See merge request !232
parents d3c28dee 74031725
No related branches found
No related tags found
No related merge requests found
......@@ -100,9 +100,9 @@ else if [ "${INTERACT_FLAG}" == "no" ]; then
fi
# submit job to batch system
if [ "${NB_PROC}" == "1" ]; then
BATCH_LST+=( $( ${BATCH_COMMAND_SEQ} ${JOB_FILE} ) ) ; echo ${BATCH_COMMAND_SEQ} ${JOB_FILE}
BATCH_LST+=( $( eval "${BATCH_COMMAND_SEQ} ${JOB_FILE}" ) ) ; echo ${BATCH_COMMAND_SEQ} ${JOB_FILE}
else
BATCH_LST+=( $( ${BATCH_COMMAND_PAR} ${JOB_FILE} ) ) ; echo ${BATCH_COMMAND_PAR} ${JOB_FILE}
BATCH_LST+=( $( eval "${BATCH_COMMAND_PAR} ${JOB_FILE}" ) ) ; echo ${BATCH_COMMAND_PAR} ${JOB_FILE}
fi
fi
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment