You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This matches a corresponding change in the CI
workflow file for RMG-Py, which was introduced
to account for very large differences between
the dynamic and baseline test results.
See: ReactionMechanismGenerator/RMG-Py#2316 (comment)
Copy file name to clipboardExpand all lines: .github/workflows/CI.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -208,7 +208,7 @@ jobs:
208
208
export FAILED=Yes
209
209
fi
210
210
echo "" # blank line so next block is interpreted as markdown
211
-
cat "$regr_test-core.log"
211
+
cat "$regr_test-core.log" || (echo "Dumping the whole log failed, please download it from GitHub actions. Here are the first 100 lines:" && head -n100 "$regr_test-core.log")
212
212
echo "</details>"
213
213
echo "<details>"
214
214
if python-jl scripts/checkModels.py \
@@ -225,7 +225,7 @@ jobs:
225
225
export FAILED=Yes
226
226
fi
227
227
echo "" # blank line so next block is interpreted as markdown
228
-
cat "$regr_test-edge.log"
228
+
cat "$regr_test-edge.log" || (echo "Dumping the whole log failed, please download it from GitHub actions. Here are the first 100 lines:" && head -n100 "$regr_test-core.log")
229
229
echo "</details>"
230
230
231
231
# Check for Regression between Reference and Dynamic (skip superminimal)
0 commit comments