PR #5526 <https://github.com/Genymobile/scrcpy/pull/5526> Co-authored-by: Genxster1998 <ck.2229.ck@gmail.com>
25 lines
447 B
Bash
Executable File
25 lines
447 B
Bash
Executable File
#!/bin/bash
|
|
# To customize the version name:
|
|
# VERSION=myversion ./release.sh
|
|
set -e
|
|
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
|
rm -rf output
|
|
|
|
./test_server.sh
|
|
./test_client.sh
|
|
|
|
./build_server.sh
|
|
./build_windows.sh 32
|
|
./build_windows.sh 64
|
|
./build_linux.sh x86_64
|
|
|
|
./package_server.sh
|
|
./package_client.sh win32 zip
|
|
./package_client.sh win64 zip
|
|
./package_client.sh linux-x86_64 tar.gz
|
|
|
|
./generate_checksums.sh
|
|
|
|
echo "Release generated in $PWD/output"
|