Merge pull request #529 from zigtools/zstd-artifacts

ZSTD build artifacts
This commit is contained in:
Auguste Rame 2022-07-13 05:08:48 -04:00 committed by GitHub
commit 00809f1067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,12 +39,18 @@ jobs:
for target in "${targets[@]}"; do for target in "${targets[@]}"; do
mkdir -p artifacts/$target mkdir -p artifacts/$target
echo "Building target ${target}..." echo "Building target ${target}..."
zig build -Dtarget=${target} -Drelease-safe --prefix artifacts/${target}/ if [ "${GITHUB_REF##*/}" == "master" ]; then
echo "Building safe"
zig build -Dtarget=${target} -Drelease-safe --prefix artifacts/${target}/
else
echo "Building debug as action is not running on master"
zig build -Dtarget=${target} --prefix artifacts/${target}/
fi
sed -e '1,5d' < README.md > artifacts/${target}/README.md sed -e '1,5d' < README.md > artifacts/${target}/README.md
cp LICENSE artifacts/${target}/ cp LICENSE artifacts/${target}/
cd artifacts/${target}/ cd artifacts/${target}/
tar cfJ ${target}.tar.xz *.md bin/* tar cfa ${target}.tar.zst *.md bin/*
mv ${target}.tar.xz ../ mv ${target}.tar.zst ../
cd ../.. cd ../..
done done
@ -53,4 +59,4 @@ jobs:
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: builds name: builds
path: artifacts/*.tar.xz path: artifacts/*.tar.zst