mirror of
https://github.com/lifting-bits/remill
synced 2026-06-21 13:56:07 +00:00
10 lines
310 B
Bash
Executable File
10 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script is run inside Github Actions CI to create an archive of a fully-built project
|
|
|
|
# install pixz for parallel xz
|
|
apt-get update
|
|
apt-get install -yqq pixz
|
|
# compress /opt/trailofbits/libraries and emit it to $1
|
|
echo "Compressing to: ${1}"
|
|
tar -Ipixz -cf "${1}" -C /opt/trailofbits remill |