Update gitlab-ci

[ci skip] Add `docker` build stage for automated build tagged images and push it to hub.docker.com
This commit is contained in:
Denis S. Soldatov aka General-Beck 2017-01-25 22:48:36 +04:00 committed by GitHub
parent 0fe6b40e68
commit c03be11303
1 changed files with 14 additions and 0 deletions

View File

@ -466,6 +466,20 @@ windows:
- target/release/parity.pdb
- nsis/InstallParity.exe
name: "x86_64-pc-windows-msvc_parity"
docker:
stage: build
only:
- tags
before_script:
- docker info
build_image:
script:
- cd docker/hub
- docker login -u $Docker_Hub_User -p $Docker_Hub_Pass
- docker build --tag ethcore/parity:$CI_BUILD_REF_NAME .
- docker push ethcore/parity:$CI_BUILD_REF_NAME
tags:
- docker
test-darwin:
stage: test
only: