Skip to content

Commit

Permalink
upgrade go-tools to v0.9.0 (#1897)
Browse files Browse the repository at this point in the history
* upgrade go-tools to v0.9.0

Signed-off-by: Kent Rancourt <kent.rancourt@microsoft.com>

* release: do not do just-in-time ghr install for publishing brig binaries

Signed-off-by: Kent Rancourt <kent.rancourt@microsoft.com>
  • Loading branch information
krancour authored Mar 30, 2022
1 parent 4a5118d commit 5fbdb64
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .brigade/brigade.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { events, Event, Job, ConcurrentGroup, SerialGroup, Container } from "@brigadecore/brigadier"

const azImg = "mcr.microsoft.com/azure-cli"
const goImg = "brigadecore/go-tools:v0.8.0"
const goImg = "brigadecore/go-tools:v0.9.0"
const jsImg = "node:16.11.0-bullseye"
const dindImg = "docker:20.10.9-dind"
const dockerClientImg = "brigadecore/docker-tools:v0.3.0"
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ GIT_VERSION = $(shell git describe --always --abbrev=7 --dirty --match=NeVeRmAtC

ifneq ($(SKIP_DOCKER),true)
PROJECT_ROOT := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
GO_DEV_IMAGE := brigadecore/go-tools:v0.8.0
GO_DEV_IMAGE := brigadecore/go-tools:v0.9.0

GO_DOCKER_CMD := docker run \
-it \
Expand Down Expand Up @@ -466,7 +466,6 @@ publish-chart:
.PHONY: publish-cli
publish-cli: build-cli
$(GO_DOCKER_CMD) sh -c ' \
go get github.com/tcnksm/ghr && \
ghr \
-u $(GITHUB_ORG) \
-r $(GITHUB_REPO) \
Expand Down
2 changes: 1 addition & 1 deletion v2/apiserver/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.8.0 as builder
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.9.0 as builder

ARG VERSION
ARG COMMIT
Expand Down
2 changes: 1 addition & 1 deletion v2/git-initializer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.8.0 as builder
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.9.0 as builder

ARG VERSION
ARG COMMIT
Expand Down
2 changes: 1 addition & 1 deletion v2/observer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.8.0 as builder
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.9.0 as builder

ARG VERSION
ARG COMMIT
Expand Down
2 changes: 1 addition & 1 deletion v2/scheduler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.8.0 as builder
FROM --platform=$BUILDPLATFORM brigadecore/go-tools:v0.9.0 as builder

ARG VERSION
ARG COMMIT
Expand Down

0 comments on commit 5fbdb64

Please sign in to comment.