mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-26 04:32:35 +01:00
45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
|
#!/bin/sh -ex
|
||
|
|
||
|
# From pure sh bible, strips rogue quotes
|
||
|
# Does single and double quotes
|
||
|
trim_quotes()
|
||
|
{
|
||
|
set -f
|
||
|
|
||
|
old_ifs=$IFS
|
||
|
IFS=\"\'
|
||
|
|
||
|
set -- $1
|
||
|
IFS=
|
||
|
printf '%s\n' "$*"
|
||
|
IFS=$old_ifs
|
||
|
|
||
|
set +f
|
||
|
}
|
||
|
|
||
|
# BUILD_blablabla is Azure specific, so we wrap it for portability
|
||
|
# The BUILD var is passed from a previous stage, so it is cleaned
|
||
|
# due to a bug in Azure
|
||
|
ARTIFACT_DIR="$BUILD_ARTIFACTSTAGINGDIRECTORY"
|
||
|
BUILD=$(trim_quotes "$BUILD")
|
||
|
|
||
|
# Remove unecessary files
|
||
|
rm -f ./bin/rpcs3.exp ./bin/rpcs3.lib ./bin/rpcs3.pdb
|
||
|
|
||
|
# Prepare compatibility database for packaging, as well as
|
||
|
# certificate for ssl (auto-updater)
|
||
|
curl -sL 'https://rpcs3.net/compatibility?api=v1&export' | iconv -t UTF-8 > ./bin/GuiConfigs/compat_database.dat
|
||
|
curl -sL 'https://curl.haxx.se/ca/cacert.pem' > ./bin/cacert.pem
|
||
|
|
||
|
# Package artifacts
|
||
|
7z a -m0=LZMA2 -mx9 "$BUILD" ./bin/*
|
||
|
|
||
|
# Generate sha256 hashes
|
||
|
# Write to file for GitHub releases
|
||
|
sha256sum "$BUILD" | awk '{ print $1 }' | tee "$BUILD.sha256"
|
||
|
echo "$(cat "$BUILD.sha256");$(stat -c %s "$BUILD")B" > GitHubReleaseMessage.txt
|
||
|
|
||
|
# Move files to publishing directory
|
||
|
mv -- "$BUILD" "$ARTIFACT_DIR"
|
||
|
mv -- "$BUILD.sha256" "$ARTIFACT_DIR"
|