futurerestore/.github/workflows/linux-post.sh
2022-06-08 18:51:27 -07:00

20 lines
988 B
Bash
Executable file

#!/usr/bin/env bash
set -e
export TMPDIR=/tmp
export WORKFLOW_ROOT=${TMPDIR}/Builder/repos/futurerestore/.github/workflows
export DEP_ROOT=${TMPDIR}/Builder/repos/futurerestore/dep_root
export BASE=${TMPDIR}/Builder/repos/futurerestore/
cd ${BASE}
export FUTURERESTORE_VERSION=$(git rev-list --count HEAD | tr -d '\n')
export FUTURERESTORE_VERSION_RELEASE=$(cat version.txt | tr -d '\n')
cd ${WORKFLOW_ROOT}
echo "futurerestore-Linux-x86_64-${FUTURERESTORE_VERSION_RELEASE}-Build_${FUTURERESTORE_VERSION}-RELEASE.tar.xz" > name1.txt
echo "futurerestore-Linux-x86_64-${FUTURERESTORE_VERSION_RELEASE}-Build_${FUTURERESTORE_VERSION}-DEBUG.tar.xz" > name2.txt
cp -RpP "${TMPDIR}/Builder/linux_fix.sh" linux_fix.sh
cp -RpP "${BASE}/cmake-build-release-x86_64/src/futurerestore" futurerestore
tar cpPJvf "futurerestore1.tar.xz" futurerestore linux_fix.sh
cp -RpP "${BASE}/cmake-build-debug-x86_64/src/futurerestore" futurerestore
tar cpPJvf "futurerestore2.tar.xz" futurerestore linux_fix.sh