Skip to content

Commit

Permalink
Use Go 1.22 to build version tracker binary
Browse files Browse the repository at this point in the history
  • Loading branch information
abhay-krishna committed Apr 16, 2024
1 parent 6d42027 commit 1907b51
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/version-tracker/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
SHELL := bash
.SHELLFLAGS:=-eux -o pipefail -c
BASE_DIRECTORY:=$(shell git rev-parse --show-toplevel)

BINARY_NAME?=version-tracker
BINARY_PATH?=bin/$(BINARY_NAME)
GO?=$(shell which go)
GOLANG_VERSION=1.22
GO ?= $(shell source $(BASE_DIRECTORY)/build/lib/common.sh && build::common::get_go_path $(GOLANG_VERSION))/go
DRY_RUN?=false
VERBOSITY?=0

Expand Down

0 comments on commit 1907b51

Please sign in to comment.