-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
240211.004308.HKT fix a failure of small verification
- Loading branch information
1 parent
e2020a8
commit 219b3be
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,6 +177,20 @@ jobs: | |
movefile(file, newfile); | ||
end | ||
- name: List problems that started but did not end | ||
# The solver got stuck when solving these problems. Investigate what happened. | ||
if: always() | ||
shell: bash | ||
run: | | ||
solver=${{ matrix.solver }} | ||
cd /tmp/${solver}_profile_prima/ | ||
ls ${solver}*_start -1 > ${solver}_prob_start | ||
ls ${solver}*_end -1 > ${solver}_prob_end | ||
diff ${solver}_prob_start ${solver}_prob_end > ${solver}_stuck || : | ||
printf "\n\n>>>>>>>>>>>>>>>>\nProblems that started but did not end:\n\n" | ||
cat ${solver}_stuck | ||
printf "\n<<<<<<<<<<<<<<<<\n\n" | ||
- name: Store artifacts | ||
uses: actions/[email protected] | ||
if: always() # Always run even if the workflow is canceled manually or due to overtime. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,6 +147,20 @@ jobs: | |
movefile(file, newfile); | ||
end | ||
- name: List problems that started but did not end | ||
# The solver got stuck when solving these problems. Investigate what happened. | ||
if: always() | ||
shell: bash | ||
run: | | ||
solver=${{ matrix.solver }} | ||
cd /tmp/${solver}_profile_prima/ | ||
ls ${solver}*_start -1 > ${solver}_prob_start | ||
ls ${solver}*_end -1 > ${solver}_prob_end | ||
diff ${solver}_prob_start ${solver}_prob_end > ${solver}_stuck || : | ||
printf "\n\n>>>>>>>>>>>>>>>>\nProblems that started but did not end:\n\n" | ||
cat ${solver}_stuck | ||
printf "\n<<<<<<<<<<<<<<<<\n\n" | ||
- name: Store artifacts | ||
uses: actions/[email protected] | ||
if: always() # Always run even if the workflow is canceled manually or due to overtime. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters