From e8fc52950e7b8a79770addeb134d278d25a1521b Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 26 Jan 2024 08:10:34 -0800 Subject: print various environments variable from CI CI is currently failing with the following error: ``` go: errors parsing go.mod: /home/runner/work/world/world/go.mod:3: invalid go version '1.21.4': must match format 1.23 ``` From [1]: > Before Go 1.21, the initial release of a Go toolchain was version 1.N, not 1.N.0 which makes me think that I'm CI is running with a version of go older than 1.21, while I specify 1.21 in my nix config. If that's the case, something is not correct in the CI environment and I should fix it. Hopefully the script will give me the information I need to debug this. [1] https://go.dev/doc/toolchain#version --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9e28dc2..695c129 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all build-binaries clean +.PHONY: all build-binaries clean build-environment all: build-binaries @@ -13,6 +13,9 @@ BINARIES = bin/x509-info bin/flake-info ALL_BINARIES = $(foreach binary, $(BINARIES), ./$(binary)) +build-environment: + @./ci/build-environment.py + bin/%: go build -o $@ \ -ldflags "-X $(PKG)/internal/version.Version=${VERSION} -X $(PKG)/internal/version.BuildDate=${BUILD_DATE}" \ -- cgit 1.4.1