Skip to content

Commit ca76808

Browse files
author
Liam White
authored
Update docker release versions (#72)
* Update docker release versions Signed-off-by: Liam White <[email protected]> * bump go and golangci version Signed-off-by: Liam White <[email protected]>
1 parent 38499a0 commit ca76808

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ version: 2.0
1717
jobs:
1818
lint:
1919
docker:
20-
- image: circleci/golang:1.12.6
20+
- image: circleci/golang:1.13.3
2121
environment:
2222
# Run garbage collection more aggresively to avoid getting OOMed during the lint phase.
2323
GOGC: "20"
@@ -32,15 +32,15 @@ jobs:
3232
test:
3333
resource_class: small
3434
docker:
35-
- image: circleci/golang:1.12.6
35+
- image: circleci/golang:1.13.3
3636
steps:
3737
- checkout
3838
- run: ./ci/install-envoy
3939
- run: ./ci/test
4040

4141
release:
4242
docker:
43-
- image: circleci/golang:1.12.6
43+
- image: circleci/golang:1.13.3
4444
steps:
4545
- checkout
4646
- setup_remote_docker

.goreleaser.yaml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,21 @@ brews:
5959
dockers:
6060
- image_templates:
6161
- getenvoy/getenvoy:{{ .Version }}-standard-1.11.1
62-
- getenvoy/getenvoy:standard-latest
62+
dockerfile: Dockerfile
63+
binary: getenvoy
6364
build_flag_templates:
6465
- "--build-arg=reference=standard:1.11.1"
66+
- image_templates:
67+
- getenvoy/getenvoy:{{ .Version }}-standard-1.11.2
68+
dockerfile: Dockerfile
69+
binary: getenvoy
70+
build_flag_templates:
71+
- "--build-arg=reference=standard:1.11.2"
72+
- image_templates:
73+
- getenvoy/getenvoy:{{ .Version }}-standard-1.12.0
74+
- getenvoy/getenvoy:standard-latest
75+
dockerfile: Dockerfile
76+
binary: getenvoy
77+
build_flag_templates:
78+
- "--build-arg=reference=standard:1.12.0"
6579

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ build: deps
2424

2525
docker: build
2626
docker build -t $(HUB)/getenvoy:$(TAG) --build-arg reference=$(ENVOY) .
27+
28+
release.dryrun:
29+
goreleaser release --skip-publish --snapshot --rm-dist

ci/install-lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
wget -c https://github.com/liamawhite/licenser/releases/download/v0.5.1/licenser_0.5.1_Linux_x86_64.tar.gz -O - | sudo tar -xz -C /usr/bin
55

66
# Install golangci-lint
7-
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sudo sh -s -- -b /usr/bin v1.17.1
7+
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sudo sh -s -- -b /usr/bin v1.18.0

0 commit comments

Comments
 (0)