/
githubmirror
/
etcd
Обзор
Документация
Войти
/
githubmirror
/
etcd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/build-release.sh
43 строки
1 KB
Ivan Valdes
Use Docker buildx to build multi-arch images
06 июн 2026, 01:25
Не верифицирован
06 июн 2026, 01:25
2d1aaa7
Код
Авторство
О чём код?
#!/usr/bin/env bash # Copyright 2025 The etcd Authors # # 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. # # Build all release binaries and images to directory ./release. # Run from repository root. # set -euo pipefail source ./scripts/test_lib.sh VERSION=${1:-} if [ -z "${VERSION}" ]; then echo "Usage: ${0} VERSION [NO_DOCKER_PUSH]" >> /dev/stderr exit 255 fi NO_DOCKER_PUSH=${2:-} if ! command -v docker >/dev/null; then echo "cannot find docker" exit 1 fi ETCD_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. pushd "${ETCD_ROOT}" >/dev/null log_callout "Building etcd binary..." ./scripts/build-binary.sh "${VERSION}" log_callout "Building Docker images..." OCI_REGISTRY="${OCI_REGISTRY:-}" OCI_PATH="${OCI_PATH:-}" BUILDDIR=release ./scripts/build-docker.sh "${VERSION}" "${NO_DOCKER_PUSH}" popd >/dev/null