mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
# -----------------------------------------------------------------------------
|
||
|
# This script builds and uploads the docker images to the registries.
|
||
|
#
|
||
|
# This script is intended to be a workaround until the rules_oci project supports
|
||
|
# targets with multiple repositories like rules_docker does. See: https://github.com/bazel-contrib/rules_oci/issues/248
|
||
|
# -----------------------------------------------------------------------------
|
||
|
|
||
|
# Validate that the tag argument exists.
|
||
|
if [ "$1" = "" ]
|
||
|
then
|
||
|
echo "Usage: $0 <tag>"
|
||
|
exit
|
||
|
fi
|
||
|
TAG=$1
|
||
|
|
||
|
# Sanity check that all targets can build before running them.
|
||
|
bazel build --config=release \
|
||
|
//cmd/beacon-chain:push_oci_image \
|
||
|
//cmd/validator:push_oci_image \
|
||
|
//cmd/prysmctl:push_oci_image
|
||
|
|
||
|
# Push the images to the registry.
|
||
|
### Beacon chain
|
||
|
bazel run --config=release \
|
||
|
//cmd/beacon-chain:push_oci_image -- --tag=$TAG
|
||
|
|
||
|
### Beacon chain (blst portable image)
|
||
|
bazel run --config=release --define=blst_modern=false \
|
||
|
//cmd/beacon-chain:push_oci_image -- --tag=$TAG-portable
|
||
|
|
||
|
### Validator
|
||
|
bazel run --config=release \
|
||
|
//cmd/validator:push_oci_image -- --tag=$TAG
|
||
|
|
||
|
### Prysmctl
|
||
|
bazel run --config=release \
|
||
|
//cmd/prysmctl:push_oci_image -- --tag=$TAG
|