Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
36 lines
832 B
Bash
Executable file
36 lines
832 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
##
|
|
## Input parameters
|
|
##
|
|
BINARY=/cometbft/${BINARY:-cometbft}
|
|
ID=${ID:-0}
|
|
LOG=${LOG:-cometbft.log}
|
|
|
|
##
|
|
## Assert linux binary
|
|
##
|
|
if ! [ -f "${BINARY}" ]; then
|
|
echo "The binary $(basename "${BINARY}") cannot be found. Please add the binary to the shared folder. Please use the BINARY environment variable if the name of the binary is not 'cometbft' E.g.: -e BINARY=my_test_binary"
|
|
|
|
exit 1
|
|
fi
|
|
BINARY_CHECK="$(file "$BINARY" | grep 'ELF 64-bit LSB executable, x86-64')"
|
|
if [ -z "${BINARY_CHECK}" ]; then
|
|
echo "Binary needs to be OS linux, ARCH amd64 (build with 'make build-linux')"
|
|
exit 1
|
|
fi
|
|
|
|
##
|
|
## Run binary with all parameters
|
|
##
|
|
export CMTHOME="/cometbft/node${ID}"
|
|
|
|
if [ -d "`dirname ${CMTHOME}/${LOG}`" ]; then
|
|
"$BINARY" "$@" | tee "${CMTHOME}/${LOG}"
|
|
else
|
|
"$BINARY" "$@"
|
|
fi
|
|
|
|
chmod 777 -R /cometbft
|
|
|