Skip to content

Commit cc2080c

Browse files
More attempts to fix the results watcher.
1 parent 8bf0962 commit cc2080c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/htcondor-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,9 @@ jobs:
217217
while [ \$ELAPSED -lt \$TIMEOUT ]; do
218218
condor_q || true
219219
RESULT_COUNT=0
220-
tail -n 20 working/GW150914_095045/bilby-IMRPhenomXPHM/log_data_analysis/*.out || true
221-
for f in working/GW150914_095045/bilby-IMRPhenomXPHM/result/*merge*_result.hdf5; do
220+
tail -n 1 working/GW150914_095045/bilby-IMRPhenomXPHM/log_data_analysis/*.out || true
221+
ls -lh working/GW150914_095045/bilby-IMRPhenomXPHM/result/ || true
222+
for f in working/GW150914_095045/bilby-IMRPhenomXPHM/final_result/*.hdf5; do
222223
[ -e "\$f" ] && RESULT_COUNT=\$((RESULT_COUNT + 1))
223224
done
224225
if [ \$RESULT_COUNT -gt 0 ]; then

0 commit comments

Comments
 (0)