remove remaining references to logtrace (#6684)

This commit is contained in:
tersec 2024-10-29 10:02:44 +00:00 committed by GitHub
parent 6973c38de2
commit a39dd8e874
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View File

@ -13,7 +13,7 @@ on:
#pull_request: #pull_request:
env: env:
# Build and include deposit_contract nimbus_signing_node nimbus_light_client logtrace in archive # Build and include deposit_contract nimbus_signing_node nimbus_light_client in archive
BUILD_TOOLS: 1 BUILD_TOOLS: 1
jobs: jobs:

View File

@ -1,13 +1,13 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Copyright (c) 2020-2023 Status Research & Development GmbH. Licensed under # Copyright (c) 2020-2024 Status Research & Development GmbH. Licensed under
# either of: # either of:
# - Apache License, version 2.0 # - Apache License, version 2.0
# - MIT license # - MIT license
# at your option. This file may not be copied, modified, or distributed except # at your option. This file may not be copied, modified, or distributed except
# according to those terms. # according to those terms.
set -e set -eo pipefail
cd /home/user/nimbus-eth2 cd /home/user/nimbus-eth2
git config --global core.abbrev 8 git config --global core.abbrev 8
@ -24,7 +24,7 @@ echo "Build Tools = ${BUILD_TOOLS}"
if [[ "${BUILD_TOOLS}" == "1" ]]; then if [[ "${BUILD_TOOLS}" == "1" ]]; then
echo "Including tools in distribution" echo "Including tools in distribution"
BINARIES="${BINARIES} deposit_contract nimbus_signing_node nimbus_light_client logtrace" BINARIES="${BINARIES} deposit_contract nimbus_signing_node nimbus_light_client"
fi fi
echo -e "\nPLATFORM=${PLATFORM}" echo -e "\nPLATFORM=${PLATFORM}"
@ -258,4 +258,3 @@ tar czf "${DIR}.tar.gz" "${DIR}"
# don't leave the directory hanging around # don't leave the directory hanging around
rm -rf "${DIR}" rm -rf "${DIR}"
cd - >/dev/null cd - >/dev/null