41 lines
1.5 KiB
Bash
Executable File
41 lines
1.5 KiB
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
# First let's print some info about our caches
|
|
"$(cygpath -u "$CCACHE_BIN_DIR")"/ccache.exe --show-stats -v
|
|
|
|
# BUILD_blablabla is CI specific, so we wrap it for portability
|
|
ARTIFACT_DIR="$BUILD_ARTIFACTSTAGINGDIRECTORY"
|
|
|
|
# Remove unecessary files
|
|
rm -f ./bin/rpcs3.exp ./bin/rpcs3.lib ./bin/rpcs3.pdb ./bin/vc_redist.x64.exe
|
|
|
|
# Prepare compatibility and SDL database for packaging
|
|
mkdir ./bin/config
|
|
mkdir ./bin/config/input_configs
|
|
curl -fsSL 'https://raw.githubusercontent.com/gabomdq/SDL_GameControllerDB/master/gamecontrollerdb.txt' 1> ./bin/config/input_configs/gamecontrollerdb.txt
|
|
curl -fsSL 'https://rpcs3.net/compatibility?api=v1&export' | iconv -t UTF-8 1> ./bin/GuiConfigs/compat_database.dat
|
|
|
|
# Download translations
|
|
mkdir -p ./bin/qt6/translations
|
|
curl -fsSL "https://api.github.com/repos/RPCS3/rpcs3_translations/contents/qm" \
|
|
| grep '"download_url":' \
|
|
| cut -d '"' -f 4 \
|
|
| while read -r url; do
|
|
curl -fsSL "$url" -o "./bin/qt6/translations/$(basename "$url")"
|
|
done
|
|
|
|
# Download SSL certificate (not needed with CURLSSLOPT_NATIVE_CA)
|
|
#curl -fsSL 'https://curl.haxx.se/ca/cacert.pem' 1> ./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
|
|
cp -- "$BUILD" "$ARTIFACT_DIR"
|
|
cp -- "$BUILD.sha256" "$ARTIFACT_DIR"
|