Commit f0eb1242 by Arve Knudsen Committed by GitHub

CircleCI: Upgrade build image (#25189)

* CircleCI: Upgrade build image
* CircleCI: Upgrade grabpl

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
parent 3532d08c
...@@ -41,7 +41,7 @@ executors: ...@@ -41,7 +41,7 @@ executors:
- image: cimg/go:1.14 - image: cimg/go:1.14
grafana-build: grafana-build:
docker: docker:
- image: grafana/build-container:1.2.16 - image: grafana/build-container:1.2.17
grafana-publish: grafana-publish:
docker: docker:
- image: grafana/grafana-ci-deploy:1.2.5 - image: grafana/grafana-ci-deploy:1.2.5
...@@ -56,7 +56,7 @@ commands: ...@@ -56,7 +56,7 @@ commands:
- run: - run:
name: "Install Grafana build pipeline tool" name: "Install Grafana build pipeline tool"
command: | command: |
VERSION=0.4.10 VERSION=0.4.11
curl -fLO https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v${VERSION}/grabpl curl -fLO https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v${VERSION}/grabpl
chmod +x grabpl chmod +x grabpl
mv grabpl /tmp mv grabpl /tmp
...@@ -889,7 +889,7 @@ jobs: ...@@ -889,7 +889,7 @@ jobs:
when: on_success when: on_success
build-docs-website: build-docs-website:
executor: grafana-build executor: base
steps: steps:
- checkout - checkout
- setup_remote_docker - setup_remote_docker
...@@ -897,11 +897,6 @@ jobs: ...@@ -897,11 +897,6 @@ jobs:
name: CI job started name: CI job started
command: "./scripts/ci-job-started.sh" command: "./scripts/ci-job-started.sh"
- run: - run:
name: Install docker
command: |
apt-get update
apt-get install -y docker.io
- run:
name: Build Grafana docs website name: Build Grafana docs website
command: | command: |
# Use latest revision here, since we want to catch if it breaks # Use latest revision here, since we want to catch if it breaks
......
#!/bin/bash #!/bin/bash
set -eo pipefail set -eo pipefail
_version="1.2.16" _version="1.2.17"
_tag="grafana/build-container:${_version}" _tag="grafana/build-container:${_version}"
_dpath=$(dirname "${BASH_SOURCE[0]}") _dpath=$(dirname "${BASH_SOURCE[0]}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment