Merge pull request #109 from tomochain/hotfix/travisstash

Hotfix broken travis deployment
This commit is contained in:
Tuna 2018-07-31 16:56:03 +07:00 committed by GitHub
commit 89df8f1b5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 33 deletions

View file

@ -1,7 +1,6 @@
sudo: required sudo: required
language: go language: go
go_import_path: github.com/ethereum/go-ethereum go_import_path: github.com/ethereum/go-ethereum
services: skip
jobs: jobs:
include: include:
@ -54,44 +53,47 @@ jobs:
branch: master branch: master
tags: true tags: true
- stage: Build and push tomochain/tomochain image - stage: Build and push untagged commit into image tomochain
services: services:
- docker - docker
before_install: install: skip
before_script:
- docker build -t tomochain/tomochain . - docker build -t tomochain/tomochain .
- docker run tomochain/tomochain - docker run tomochain/tomochain
install: skip
script: skip
deploy:
- provider: script
script: script:
- bash docker_push.sh latest - echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin
- bash docker_push.sh $TRAVIS_BUILD_ID - docker tag tomochain/tomochain tomochain/tomochain:latest
on: - docker push tomochain/tomochain:latest
branch: master - docker tag tomochain/tomochain tomochain/tomochain:$TRAVIS_BUILD_ID
tags: false - docker push tomochain/tomochain:$TRAVIS_BUILD_ID
- provider: script after_success:
script: - curl -X POST $INFRA_IMAGE_REBUILD_HOOK
- bash docker_push.sh latest
- bash docker_push.sh $TRAVIS_TAG
on:
branch: master
tags: true
- stage: Trigger rebuild of tomochain/infra-tomochain image - stage: Build and push tagged commit into image tomochain
sudo: false services:
- docker
install: skip install: skip
script: bash docker_rebuild.sh before_script:
- docker build -t tomochain/tomochain .
- docker run tomochain/tomochain
script:
- echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin
- docker tag tomochain/tomochain tomochain/tomochain:latest
- docker push tomochain/tomochain:latest
- docker tag tomochain/tomochain tomochain/tomochain:$TRAVIS_TAG
- docker push tomochain/tomochain:$TRAVIS_TAG
after_success:
- curl -X POST $INFRA_IMAGE_REBUILD_HOOK
stages: stages:
- name: Lint - name: Lint
- name: Build and test - name: Build and test
- name: Github release - name: Github release
if: type != pull_request AND branch = master AND tag = true AND repo = tomochain/tomochain if: type != pull_request AND branch = master AND tag = true AND repo = tomochain/tomochain
- name: Build and push tomochain/tomochain image - name: Build and push untagged commit into image tomochain
if: type != pull_request AND branch = master AND repo = tomochain/tomochain if: type != pull_request AND branch = master AND tag = false AND repo = tomochain/tomochain
- name: Trigger rebuild of tomochain/infra-tomochain image - name: Build and push tagged commit into image tomochain
if: type != pull_request AND branch = master AND repo = tomochain/tomochain if: type != pull_request AND branch = master AND tag = true AND repo = tomochain/tomochain
notifications: notifications:
slack: slack:

View file

@ -1,5 +0,0 @@
#!/bin/bash
echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin
docker tag tomochain/tomochain tomochain/tomochain:$1
docker push tomochain/tomochain:$1

View file

@ -1 +0,0 @@
curl -X POST $INFRA_IMAGE_REBUILD_HOOK