fix docker build and snapcraft

This commit is contained in:
Denis S. Soldatov aka General-Beck 2017-07-17 12:06:32 +03:00
parent 04b641ff5f
commit 69561da15f
3 changed files with 3 additions and 4 deletions

View File

@ -561,9 +561,7 @@ docker-build:
- docker info
script:
- if [ "$CI_BUILD_REF_NAME" == "beta-release" ]; then DOCKER_TAG="latest"; else DOCKER_TAG=$CI_BUILD_REF_NAME; fi
- docker login -u $Docker_Hub_User -p $Docker_Hub_Pass
- sh scripts/docker-build.sh $DOCKER_TAG ethcore
- docker logout
- echo "Tag:" $DOCKER_TAG
- docker login -u $Docker_Hub_User_Parity -p $Docker_Hub_Pass_Parity
- sh scripts/docker-build.sh $DOCKER_TAG parity
- docker logout

View File

@ -1,5 +1,6 @@
#!/bin/bash
cd docker/hub
if [ "$1" == "latest" ]; then DOCKER_BUILD_TAG="beta-release"; fi
echo "Docker build tag: " $DOCKER_BUILD_TAG
docker build --build-arg BUILD_TAG=$DOCKER_BUILD_TAG --no-cache=true --tag $2/parity:$1 .
docker push $2/parity:$1

View File

@ -17,6 +17,6 @@ apps:
parts:
parity:
source: .
source: ..
plugin: rust
build-packages: [g++, libudev-dev, libssl-dev, make, pkg-config]