Skip to content

Commit

Permalink
Changed compression to tar lzma and without -c
Browse files Browse the repository at this point in the history
  • Loading branch information
oskari1 committed Sep 4, 2023
1 parent 0a3bb60 commit 2515287
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/z3_trace_log_gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ jobs:
# Run Z3 solver for $file
z3 trace=true proof=true trace-file-name=${base_name}.log ./$file
# Compress the file and save it to logs directory
gzip -c ${base_name}.log > logs/${base_name}.log.gz
echo "Compressed $file and saved to $logs/${base_name}.log.gz"
# gzip -c ${base_name}.log > logs/${base_name}.log.gz
# Compress the file using tar lzma
tar --lzma -J ${base_name}.tar.lzma ${base_name}.log
done
echo "::set-output name=logs_path::$(realpath logs)"
echo "::set-output name=logs_path::$(realpath .)"
# echo "::set-output name=logs_path::$(realpath logs)"
- name: Upload build artifacts
uses: actions/[email protected]
Expand Down

0 comments on commit 2515287

Please sign in to comment.