Skip to content

Commit

Permalink
Actually generate all log files
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAlaif committed Dec 17, 2024
1 parent 52c8586 commit ef0d2dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
id: run_z3_and_upload
run: |
# Loop through all files and check that log exists
for file in smt-problems/**/*.smt2; do
for file in `find ./smt-problems -name "*.smt2" -type f`; do
test -f "$file"
# Skip if the file if the first line is a comment with
[ "$(sed -n '/^;[^\n]*${{ steps.configure-z3-id.outputs.z3_v_regex }}/p;q' $file)" ] && echo "Skipping $file since the first line contains \"${{ matrix.z3version }}\"" && continue || true
Expand Down

0 comments on commit ef0d2dd

Please sign in to comment.