7e89bab4aa
* docker images are now built on k8s: test run * copy check_sync.sh in build-linux job * copy scripts/docker/hub/* in build-linux job * removed cache var * cleanup, no more nightly dockers * cleanup in dockerfile * some new tags * removed sccsche debug log, cleanup * no_gits, new artifacts dir, changed scripts. Test run. * define version once * one source for TRACK * stop kovan onchain updates * moved changes for two images to a new branch * rename Dockerfile * no need in libudev-dev
58 lines
2.5 KiB
Bash
Executable File
58 lines
2.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # fail on any error
|
|
|
|
VERSION=$(cat ./tools/VERSION)
|
|
echo "Parity Ethereum version = ${VERSION}"
|
|
|
|
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}";;
|
|
"beta")
|
|
echo "Docker TAGs - 'parity/parity:beta', 'parity/parity:latest', \
|
|
'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:beta" \
|
|
--tag "parity/parity:latest" \
|
|
--tag "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}" \
|
|
--file tools/Dockerfile .;
|
|
docker push "parity/parity:beta";
|
|
docker push "parity/parity:latest";
|
|
docker push "parity/parity:${VERSION}-${CI_COMMIT_REF_NAME}";;
|
|
"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";;
|
|
*)
|
|
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
|