Skip to content

Commit

Permalink
Allow stdout to reach stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Jan 30, 2025
1 parent 6d1422b commit 97ad15c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/NightlyBMDB_CLI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
sim_input="/root/${base_name}"
sim_output="/root/${base_extless_name}_output"
echo -n "Running \"${file}\" in output folder \"${base_extless_name}_output\"..."
vcell_result=$(docker run -v $GITHUB_WORKSPACE/set_${{ matrix.sets }}:/root $(docker image ls | grep "<none>" | awk '{print $3;}') execute-omex -d -i ${sim_input} -o ${sim_output} --timeout_ms=300000)
docker run -v $GITHUB_WORKSPACE/set_${{ matrix.sets }}:/root $(docker image ls | grep "<none>" | awk '{print $3;}') execute-omex -i ${sim_input} -o ${sim_output} --timeout_ms=300000
echo "Done!"
# Grab Summary
echo -n "Obtaining Summary..."
Expand All @@ -232,7 +232,6 @@ jobs:
echo -n "Obtaining Execution Result..."
status=$(cat "${GITHUB_WORKSPACE}/set_${{ matrix.sets }}/${base_extless_name}_output/exec_summary.json" | jq -r '.status')
echo "${status}"
# Note: `cat`ing "$vcell_result" will be the runting logging!
if [[ "${status}" == "FAILED" ]]; then
# Copy error log to github workspace
echo -n "Copying Failure Report..."
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/NightlyPublished_CLI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
sim_input="/root/${base_name}"
sim_output="/root/${base_extless_name}_output"
echo -n "Running \"${file}\" in output folder \"${base_extless_name}_output\"..."
vcell_result=$(docker run -v $GITHUB_WORKSPACE/set_${{ matrix.sets }}:/root $(docker image ls | grep "<none>" | awk '{print $3;}') execute-omex -d -i ${sim_input} -o ${sim_output} --timeout_ms=300000)
docker run -v $GITHUB_WORKSPACE/set_${{ matrix.sets }}:/root $(docker image ls | grep "<none>" | awk '{print $3;}') execute-omex -d -i ${sim_input} -o ${sim_output} --timeout_ms=300000
echo "Done!"
# Grab Summary
echo -n "Obtaining Summary..."
Expand Down

0 comments on commit 97ad15c

Please sign in to comment.