Some checks failed
ci/gh-actions/depends / Cross-Mac aarch64 (push) Failing after 7m53s
ci/gh-actions/depends / ARM v8 (push) Failing after 38m55s
ci/gh-actions/depends / ARM v7 (push) Failing after 16m2s
ci/gh-actions/depends / i686 Linux (push) Failing after 19m56s
ci/gh-actions/depends / i686 Win (push) Failing after 26m54s
ci/gh-actions/depends / RISCV 64bit (push) Failing after 20m7s
ci/gh-actions/depends / x86_64 Freebsd (push) Has been cancelled
ci/gh-actions/depends / x86_64 Linux (push) Has been cancelled
ci/gh-actions/depends / Win64 (push) Has been cancelled
ci/gh-actions/depends / Cross-Mac x86_64 (push) Has been cancelled
32 lines
1.2 KiB
Bash
Executable File
32 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get the git information
|
|
TAG=`git tag -l --points-at HEAD`
|
|
COMMIT=`git rev-parse --short=9 HEAD`
|
|
|
|
# Build the 64-bit Windows release
|
|
USE_DEVICE_TREZOR=OFF make depends target=x86_64-w64-mingw32 -j12
|
|
pushd ./build/x86_64-w64-mingw32/release/bin > /dev/null
|
|
zip -ur ~/releases/peya-${TAG}-win64.zip peyad.exe peya-wallet-cli.exe peya-wallet-rpc.exe
|
|
popd > /dev/null
|
|
|
|
# Build the 64-bit Apple Silicon release
|
|
USE_DEVICE_TREZOR=OFF make depends target=aarch64-apple-darwin -j12
|
|
pushd ./build/aarch64-apple-darwin/release/bin > /dev/null
|
|
zip -ur ~/releases/peya-${TAG}-macos-arm64.zip peyad peya-wallet-cli peya-wallet-rpc
|
|
popd > /dev/null
|
|
|
|
# Build the 64-bit MacOS Intel Silicon release
|
|
USE_DEVICE_TREZOR=OFF make depends target=x86_64-apple-darwin -j12
|
|
pushd ./build/x86_64-apple-darwin/release/bin > /dev/null
|
|
zip -ur ~/releases/peya-${TAG}-macos-x86_64.zip peyad peya-wallet-cli peya-wallet-rpc
|
|
popd > /dev/null
|
|
|
|
# Build the 64-bit Linux release
|
|
USE_DEVICE_TREZOR=OFF make depends target=x86_64-linux-gnu -j12
|
|
pushd ./build/x86_64-linux-gnu/release/bin > /dev/null
|
|
zip -ur ~/releases/peya-${TAG}-linux-x86_64.zip peyad peya-wallet-cli peya-wallet-rpc
|
|
popd > /dev/null
|
|
|
|
# Finish
|