Merge pull request #16069 from xlson/ci-deploy-speedup

build: crcmod speedups rsync to gcp for deploy.
This commit is contained in:
Leonard Gram 2019-03-19 14:13:15 +01:00 committed by GitHub
commit 95f7a91328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -322,7 +322,7 @@ jobs:
deploy-enterprise-master:
docker:
- image: grafana/grafana-ci-deploy:1.2.0
- image: grafana/grafana-ci-deploy:1.2.1
steps:
- attach_workspace:
at: .
@ -345,7 +345,7 @@ jobs:
deploy-enterprise-release:
docker:
- image: grafana/grafana-ci-deploy:1.2.0
- image: grafana/grafana-ci-deploy:1.2.1
steps:
- checkout
- attach_workspace:
@ -378,7 +378,7 @@ jobs:
deploy-master:
docker:
- image: grafana/grafana-ci-deploy:1.2.0
- image: grafana/grafana-ci-deploy:1.2.1
steps:
- attach_workspace:
at: .
@ -409,7 +409,7 @@ jobs:
deploy-release:
docker:
- image: grafana/grafana-ci-deploy:1.2.0
- image: grafana/grafana-ci-deploy:1.2.1
steps:
- checkout
- attach_workspace:

View File

@ -10,7 +10,7 @@ FROM circleci/python:2.7-stretch
USER root
RUN pip install awscli && \
RUN pip install -U awscli crcmod && \
curl https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-222.0.0-linux-x86_64.tar.gz | \
tar xvzf - -C /opt && \
apt update && \

View File

@ -1,6 +1,6 @@
#!/bin/bash
_version="1.2.0"
_version="1.2.1"
_tag="grafana/grafana-ci-deploy:${_version}"
docker build -t $_tag .