CircleCI: Upgrade build image (#25189)

* CircleCI: Upgrade build image
* CircleCI: Upgrade grabpl

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
Arve Knudsen 2020-05-29 11:39:30 +02:00 committed by GitHub
parent 3532d08cbf
commit f0eb124278
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 9 deletions

View File

@ -41,7 +41,7 @@ executors:
- image: cimg/go:1.14
grafana-build:
docker:
- image: grafana/build-container:1.2.16
- image: grafana/build-container:1.2.17
grafana-publish:
docker:
- image: grafana/grafana-ci-deploy:1.2.5
@ -56,7 +56,7 @@ commands:
- run:
name: "Install Grafana build pipeline tool"
command: |
VERSION=0.4.10
VERSION=0.4.11
curl -fLO https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v${VERSION}/grabpl
chmod +x grabpl
mv grabpl /tmp
@ -889,18 +889,13 @@ jobs:
when: on_success
build-docs-website:
executor: grafana-build
executor: base
steps:
- checkout
- setup_remote_docker
- run:
name: CI job started
command: "./scripts/ci-job-started.sh"
- run:
name: Install docker
command: |
apt-get update
apt-get install -y docker.io
- run:
name: Build Grafana docs website
command: |

View File

@ -1,7 +1,7 @@
#!/bin/bash
set -eo pipefail
_version="1.2.16"
_version="1.2.17"
_tag="grafana/build-container:${_version}"
_dpath=$(dirname "${BASH_SOURCE[0]}")