File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Run the *Build **client*** workflow;
1515- [ Build Nethermind] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-nethermin.yml ) [[ source] ( https://github.com/nethermindeth/nethermind )]
1616- [ Build Nimbus-Eth2] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-nimbus-eth2.yml ) [[ source] ( https://github.com/status-im/nimbus-eth2 )]
1717- [ Build Nimbus-Eth1] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-nimbus-eth1.yml ) [[ source] ( https://github.com/status-im/nimbus-eth1 )]
18- - [ Build Prysm] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-prysm.yml ) [[ source] ( https://github.com/prysmaticlabs /prysm )]
18+ - [ Build Prysm] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-prysm.yml ) [[ source] ( https://github.com/offchainlabs /prysm )]
1919- [ Build Reth] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-reth.yml ) [[ source] ( https://github.com/paradigmxyz/reth )]
2020- [ Build Teku] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-teku.yml ) [[ source] ( https://github.com/consensys/teku )]
2121- [ Build Grandine] ( https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-grandine.yml ) [[ source] ( https://github.com/grandinetech/grandine )]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ OS_NAME=$(uname -s | tr '[:upper:]' '[:lower:]')
66if [ " ${OS_NAME} " == " darwin" ]; then
77 /opt/homebrew/bin/brew install go
88 /opt/homebrew/bin/go install github.com/bazelbuild/bazelisk@latest
9- else
9+ else
1010 sudo apt-get update
1111 sudo apt-get upgrade -y
1212 sudo apt install -y ca-certificates python3
@@ -19,16 +19,16 @@ case ${build_method} in
1919 " go" )
2020 echo " Building with Go..."
2121 go mod tidy
22-
22+
2323 # Define ldflags for version information
2424 ldflags=$( cat << -END
25- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
25+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
2929END
3030 )
31-
31+
3232 # Build with blst_enabled and blst_portable to support both amd64 and arm64. The BLST library (used for
3333 # cryptographic operations) needs specific CPU features.
3434 CGO_ENABLED=1 go build \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ OS_NAME=$(uname -s | tr '[:upper:]' '[:lower:]')
66if [ " ${OS_NAME} " == " darwin" ]; then
77 /opt/homebrew/bin/brew install go
88 /opt/homebrew/bin/go install github.com/bazelbuild/bazelisk@latest
9- else
9+ else
1010 sudo apt-get update
1111 sudo apt-get upgrade -y
1212 sudo apt install -y ca-certificates python3
@@ -19,16 +19,16 @@ case ${build_method} in
1919 " go" )
2020 echo " Building with Go..."
2121 go mod tidy
22-
22+
2323 # Define ldflags for version information
2424 ldflags=$( cat << -END
25- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
25+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
2929END
3030 )
31-
31+
3232 # Build with blst_enabled and blst_portable to support both amd64 and arm64. The BLST library (used for
3333 # cryptographic operations) needs specific CPU features.
3434 CGO_ENABLED=1 go build \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ OS_NAME=$(uname -s | tr '[:upper:]' '[:lower:]')
66if [ " ${OS_NAME} " == " darwin" ]; then
77 /opt/homebrew/bin/brew install go
88 /opt/homebrew/bin/go install github.com/bazelbuild/bazelisk@latest
9- else
9+ else
1010 sudo apt-get update
1111 sudo apt-get upgrade -y
1212 sudo apt install -y ca-certificates python3
@@ -19,16 +19,16 @@ case ${build_method} in
1919 " go" )
2020 echo " Building with Go..."
2121 go mod tidy
22-
22+
2323 # Define ldflags for version information
2424 ldflags=$( cat << -END
25- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
25+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
2929END
3030 )
31-
31+
3232 # Build with blst_enabled and blst_portable to support both amd64 and arm64. The BLST library (used for
3333 # cryptographic operations) needs specific CPU features.
3434 CGO_ENABLED=1 go build \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ OS_NAME=$(uname -s | tr '[:upper:]' '[:lower:]')
66if [ " ${OS_NAME} " == " darwin" ]; then
77 /opt/homebrew/bin/brew install go
88 /opt/homebrew/bin/go install github.com/bazelbuild/bazelisk@latest
9- else
9+ else
1010 sudo apt-get update
1111 sudo apt-get upgrade -y
1212 sudo apt install -y ca-certificates python3
@@ -19,16 +19,16 @@ case ${build_method} in
1919 " go" )
2020 echo " Building with Go..."
2121 go mod tidy
22-
22+
2323 # Define ldflags for version information
2424 ldflags=$( cat << -END
25- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28- -X 'github.com/prysmaticlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
25+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitCommit=$( git rev-parse HEAD) ' \
26+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.gitTag=$( git describe --tags 2> /dev/null || echo Unknown) ' \
27+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDate=$( date -u +%Y-%m-%d\ %H:%M:%S%:z) ' \
28+ -X 'github.com/offchainlabs /prysm/v5/runtime/version.buildDateUnix=$( date +%s) '
2929END
3030 )
31-
31+
3232 # Build with blst_enabled and blst_portable to support both amd64 and arm64. The BLST library (used for
3333 # cryptographic operations) needs specific CPU features.
3434 CGO_ENABLED=1 go build \
You can’t perform that action at this time.
0 commit comments