forked from hyperledger/besu
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # .github/workflows/release.yml # besu/src/main/java/org/hyperledger/besu/controller/BesuController.java # ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/methods/EthEstimateGas.java # ethereum/evmtool/build.gradle # evm/src/main/java/org/hyperledger/besu/evm/EvmSpecVersion.java # gradle/verification-metadata.xml # plugin-api/build.gradle
- Loading branch information
Showing
703 changed files
with
12,711 additions
and
7,687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#!/bin/bash | ||
## | ||
## Copyright contributors to Hyperledger Besu. | ||
## | ||
## Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
## the License. You may obtain a copy of the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
## an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
## specific language governing permissions and limitations under the License. | ||
## | ||
## SPDX-License-Identifier: Apache-2.0 | ||
## | ||
|
||
CONTAINER_NAME=${CONTAINER_NAME:-besu} | ||
VERSION=${VERSION} | ||
TAG=${TAG} | ||
CHECK_LATEST=${CHECK_LATEST} | ||
RETRY=${RETRY:-10} | ||
SLEEP=${SLEEP:-5} | ||
|
||
# Helper function to throw error | ||
log_error() { | ||
echo "::error $1" | ||
exit 1 | ||
} | ||
|
||
# Check container is in running state | ||
_RUN_STATE=$(docker inspect --type=container -f={{.State.Status}} ${CONTAINER_NAME}) | ||
if [[ "${_RUN_STATE}" != "running" ]] | ||
then | ||
log_error "container is not running" | ||
fi | ||
|
||
# Check for specific log message in container logs to verify besu started | ||
_SUCCESS=false | ||
while [[ ${_SUCCESS} != "true" && $RETRY -gt 0 ]] | ||
do | ||
docker logs ${CONTAINER_NAME} | grep -q "Ethereum main loop is up" && { | ||
_SUCCESS=true | ||
continue | ||
} | ||
echo "Waiting for the besu to start. Remaining retries $RETRY ..." | ||
RETRY=$(expr $RETRY - 1) | ||
sleep $SLEEP | ||
done | ||
|
||
# Log entry does not present after all retries, fail the script with a message | ||
if [[ ${_SUCCESS} != "true" ]] | ||
then | ||
docker logs --tail=100 ${CONTAINER_NAME} | ||
log_error "could not find the log message 'Ethereum main loop is up'" | ||
else | ||
echo "Besu container started and entered main loop" | ||
fi | ||
|
||
# For the latest tag check the version match | ||
if [[ ${TAG} == "latest" && ${CHECK_LATEST} == "true" ]] | ||
then | ||
_VERSION_IN_LOG=$(docker logs ${CONTAINER_NAME} | grep "#" | grep "Besu version" | cut -d " " -f 4 | sed 's/\s//g') | ||
echo "Extracted version from logs [$_VERSION_IN_LOG]" | ||
if [[ "$_VERSION_IN_LOG" != "${VERSION}" ]] | ||
then | ||
log_error "version [$_VERSION_IN_LOG] extracted from container logs does not match the expected version [${VERSION}]" | ||
else | ||
echo "Latest Besu container version matches" | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: container verify | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Besu version' | ||
required: true | ||
verify-latest-version: | ||
description: 'Check latest container version' | ||
required: false | ||
type: choice | ||
default: "true" | ||
options: | ||
- "true" | ||
- "false" | ||
|
||
jobs: | ||
verify: | ||
timeout-minutes: 4 | ||
strategy: | ||
matrix: | ||
combination: | ||
- tag: ${{ inputs.version }} | ||
platform: '' | ||
runner: ubuntu-latest | ||
- tag: ${{ inputs.version }}-amd64 | ||
platform: 'linux/amd64' | ||
runner: ubuntu-latest | ||
- tag: latest | ||
platform: '' | ||
runner: ubuntu-latest | ||
- tag: ${{ inputs.version }}-arm64 | ||
platform: '' | ||
runner: besu-arm64 | ||
runs-on: ${{ matrix.combination.runner }} | ||
env: | ||
CONTAINER_NAME: besu-check | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- name: Start container | ||
run: | | ||
PLATFORM_OPT="" | ||
[[ x${{ matrix.combination.platform }} != 'x' ]] && PLATFORM_OPT="--platform ${{ matrix.combination.platform }}" | ||
docker run -d $PLATFORM_OPT --name ${{ env.CONTAINER_NAME }} hyperledger/besu:${{ matrix.combination.tag }} | ||
- name: Verify besu container | ||
run: bash .github/workflows/BesuContainerVerify.sh | ||
env: | ||
TAG: ${{ matrix.combination.tag }} | ||
VERSION: ${{ inputs.version }} | ||
CHECK_LATEST: ${{ inputs.verify-latest-version }} | ||
|
||
- name: Stop container | ||
run: docker stop ${{ env.CONTAINER_NAME }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.