Skip to content

Commit

Permalink
More testing
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAlaif committed Dec 16, 2023
1 parent 59eca05 commit 044e4a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/z3_trace_log_gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: |
# Create the 'logs' directory
mkdir logs
test -f "$cache-file" && tar -xf "$cache-file" || echo "No cache"
test -f "${cache-file}" && tar -xf "${cache-file}" || echo "No cache"
# Loop through changed files
for file in ${{ steps.changed-smt2-files.outputs.smt_all_changed_files }}; do
Expand All @@ -86,8 +86,8 @@ jobs:
# done
# Compress the 'logs' directory using bzip2
echo "Compressing to $cache-file"
tar -cjf "$cache-file" logs/
echo "Compressing to ${cache-file}"
tar -cjf "${cache-file}" logs/
ls -la
echo "logs_path=$(realpath ${cache-file})" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 044e4a3

Please sign in to comment.