5923146210
* sccache "stop server" - > "show stats" * remove testing and beta from update, cli, etc. * Beta->Nigthly updater * Beta->Nightly * ->Nightly and fix * updater ->Stable * Testing->Nightly * Update scripts/gitlab/test-linux.sh Co-Authored-By: Denis Pisarev <denis.pisarev@parity.io> * sccache "stop server" - > "show stats" * remove testing and beta from update, cli, etc. * Beta->Nigthly updater * Beta->Nightly * ->Nightly and fix * updater ->Stable * Testing->Nightly * Update scripts/gitlab/test-linux.sh Co-Authored-By: Denis Pisarev <denis.pisarev@parity.io> * Update CHANGELOGs and version * temporarily allow darwin and windows to be built on any branch * fix check-benches job * Revert "temporarily allow darwin and windows to be built on any branch" This reverts commit 45c72f69e99cbe891f694e528a53eb3c3bd8f331. * fix check-benches job * Revert changing track from `nightly` to `stable` * fix test: rpc_parity_upgrade_ready * fix tests: rpc_parity_version_info, rpc_parity_releases_info Co-authored-by: Denis Pisarev <denis.pisarev@parity.io> Co-authored-by: s3krit <pugh@s3kr.it>
56 lines
2.3 KiB
Bash
Executable File
56 lines
2.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # fail on any error
|
|
|
|
VERSION=$(cat ./tools/VERSION)
|
|
TRACK=$(cat ./tools/TRACK)
|
|
echo "Parity Ethereum version = ${VERSION}"
|
|
echo "Parity Ethereum track = ${TRACK}"
|
|
|
|
test "$Docker_Hub_User_Parity" -a "$Docker_Hub_Pass_Parity" \
|
|
|| ( echo "no docker credentials provided"; exit 1 )
|
|
docker login -u "$Docker_Hub_User_Parity" -p "$Docker_Hub_Pass_Parity"
|
|
echo "__________Docker info__________"
|
|
docker info
|
|
|
|
# we stopped pushing nightlies to dockerhub, will push to own registry prb.
|
|
case "${SCHEDULE_TAG:-${CI_COMMIT_REF_NAME}}" in
|
|
"$SCHEDULE_TAG")
|
|
echo "Docker TAG - 'parity/parity:${SCHEDULE_TAG}'";
|
|
docker build --no-cache \
|
|
--build-arg VCS_REF="${CI_COMMIT_SHA}" \
|
|
--build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')" \
|
|
--tag "parity/parity:${SCHEDULE_TAG}" \
|
|
--file tools/Dockerfile .;
|
|
docker push "parity/parity:${SCHEDULE_TAG}";;
|
|
"stable")
|
|
echo "Docker TAGs - 'parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}', 'parity/parity:stable'";
|
|
docker build --no-cache \
|
|
--build-arg VCS_REF="${CI_COMMIT_SHA}" \
|
|
--build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')" \
|
|
--tag "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}" \
|
|
--tag "parity/parity:stable" \
|
|
--file tools/Dockerfile .;
|
|
docker push "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}";
|
|
docker push "parity/parity:stable";
|
|
docker push "parity/parity:latest";;
|
|
v[0-9]*.[0-9]*)
|
|
echo "Docker TAG - 'parity/parity:${VERSION}-${TRACK}'"
|
|
docker build --no-cache \
|
|
--build-arg VCS_REF="${CI_COMMIT_SHA}" \
|
|
--build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')" \
|
|
--tag "parity/parity:${VERSION}-${TRACK}" \
|
|
--file tools/Dockerfile .;
|
|
docker push "parity/parity:${VERSION}-${TRACK}";;
|
|
*)
|
|
echo "Docker TAG - 'parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}'"
|
|
docker build --no-cache \
|
|
--build-arg VCS_REF="${CI_COMMIT_SHA}" \
|
|
--build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')" \
|
|
--tag "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}" \
|
|
--file tools/Dockerfile .;
|
|
docker push "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}";;
|
|
esac
|
|
|
|
docker logout
|