Skip to content

Commit 00bd6cc

Browse files
authored
Run make drone to use the new build image (#5368)
Signed-off-by: Danny Kopping <[email protected]>
1 parent d8ed87d commit 00bd6cc

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.drone/drone.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,35 +39,35 @@ steps:
3939
- make BUILD_IN_CONTAINER=false check-drone-drift
4040
depends_on:
4141
- clone
42-
image: grafana/loki-build-image:0.19.0
42+
image: grafana/loki-build-image:0.20.0
4343
name: check-drone-drift
4444
- commands:
4545
- make BUILD_IN_CONTAINER=false check-generated-files
4646
depends_on:
4747
- clone
48-
image: grafana/loki-build-image:0.19.0
48+
image: grafana/loki-build-image:0.20.0
4949
name: check-generated-files
5050
- commands:
5151
- make BUILD_IN_CONTAINER=false test
5252
depends_on:
5353
- clone
5454
- check-generated-files
55-
image: grafana/loki-build-image:0.19.0
55+
image: grafana/loki-build-image:0.20.0
5656
name: test
5757
- commands:
5858
- make BUILD_IN_CONTAINER=false lint
5959
depends_on:
6060
- clone
6161
- check-generated-files
62-
image: grafana/loki-build-image:0.19.0
62+
image: grafana/loki-build-image:0.20.0
6363
name: lint
6464
- commands:
6565
- make BUILD_IN_CONTAINER=false check-mod
6666
depends_on:
6767
- clone
6868
- test
6969
- lint
70-
image: grafana/loki-build-image:0.19.0
70+
image: grafana/loki-build-image:0.20.0
7171
name: check-mod
7272
- commands:
7373
- apk add make bash && make lint-scripts
@@ -77,19 +77,19 @@ steps:
7777
- make BUILD_IN_CONTAINER=false loki
7878
depends_on:
7979
- clone
80-
image: grafana/loki-build-image:0.19.0
80+
image: grafana/loki-build-image:0.20.0
8181
name: loki
8282
- commands:
8383
- make BUILD_IN_CONTAINER=false validate-example-configs
8484
depends_on:
8585
- loki
86-
image: grafana/loki-build-image:0.19.0
86+
image: grafana/loki-build-image:0.20.0
8787
name: validate-example-configs
8888
- commands:
8989
- make BUILD_IN_CONTAINER=false check-example-config-doc
9090
depends_on:
9191
- clone
92-
image: grafana/loki-build-image:0.19.0
92+
image: grafana/loki-build-image:0.20.0
9393
name: check-example-config-doc
9494
trigger:
9595
event:
@@ -123,7 +123,7 @@ node:
123123
steps:
124124
- commands:
125125
- go test -mod=vendor -bench=Benchmark -benchtime 20x -timeout 120m ./pkg/...
126-
image: grafana/loki-build-image:0.19.0
126+
image: grafana/loki-build-image:0.20.0
127127
name: All
128128
trigger:
129129
cron:
@@ -1064,6 +1064,6 @@ kind: secret
10641064
name: deploy_config
10651065
---
10661066
kind: signature
1067-
hmac: 8b3b13c0697e37fe9e39c422c375bb95c250ca3614bed5bb4697328ab89d1e68
1067+
hmac: ca18b0336abbfa2af076bcf301c13450ce1a8cdad68b0d7c4a5a3e6fbb6a3140
10681068

10691069
...

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ DOCKER_IMAGE_DIRS := $(patsubst %/Dockerfile,%,$(DOCKERFILES))
4242
# make BUILD_IN_CONTAINER=false target
4343
# or you can override this with an environment variable
4444
BUILD_IN_CONTAINER ?= true
45-
BUILD_IMAGE_VERSION := 0.19.0
45+
46+
# ensure you run `make drone` after changing this
47+
BUILD_IMAGE_VERSION := 0.20.0
4648

4749
# Docker image info
4850
IMAGE_PREFIX ?= grafana

0 commit comments

Comments
 (0)