From 2f309a87368a3016dc32976abb1d50d8152f9ac0 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Mon, 2 Oct 2023 17:15:59 +0200 Subject: [PATCH] fixed build-linux.sh for diamond-node --- scripts/actions/build-linux.sh | 2 +- scripts/actions/build-windows.sh | 21 --------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100755 scripts/actions/build-windows.sh diff --git a/scripts/actions/build-linux.sh b/scripts/actions/build-linux.sh index dcfc2e9ae7..7df17df355 100755 --- a/scripts/actions/build-linux.sh +++ b/scripts/actions/build-linux.sh @@ -16,7 +16,7 @@ echo "_____ Post-processing binaries _____" rm -rf artifacts/* mkdir -p artifacts/ -cp -v target/release/openethereum artifacts/openethereum +cp -v target/release/diamond-node artifacts/diamond-node cp -v target/release/openethereum-evm artifacts/openethereum-evm cp -v target/release/ethstore artifacts/ethstore cp -v target/release/ethkey artifacts/ethkey diff --git a/scripts/actions/build-windows.sh b/scripts/actions/build-windows.sh deleted file mode 100755 index 948e7f85e5..0000000000 --- a/scripts/actions/build-windows.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -set -e # fail on any error -set -u # treat unset variables as error -# NOTE: Enables the aes-ni instructions for RustCrypto dependency. -# If you change this please remember to also update .cargo/config -export RUSTFLAGS=" -Ctarget-feature=+aes,+sse2,+ssse3 -Ctarget-feature=+crt-static -Clink-arg=-s" - -echo "_____ Build Parity and tools _____" -time cargo build --verbose --release --features final -time cargo build --verbose --release -p evmbin -time cargo build --verbose --release -p ethstore-cli -time cargo build --verbose --release -p ethkey-cli - -echo "_____ Post-processing binaries _____" -rm -rf artifacts -mkdir -p artifacts - -cp --verbose target/release/openethereum.exe artifacts/openethereum.exe -cp --verbose target/release/openethereum-evm.exe artifacts/openethereum-evm.exe -cp --verbose target/release/ethstore.exe artifacts/ethstore.exe -cp --verbose target/release/ethkey.exe artifacts/ethkey.exe