Skip to content

Commit

Permalink
misc: remove goproxy.io for go build
Browse files Browse the repository at this point in the history
The goproxy.io service is unstable for now, it effects,
the github CI, let's remove it.

Signed-off-by: Yan Song <yansong.ys@antgroup.com>
  • Loading branch information
imeoer committed Feb 17, 2025
1 parent 09b81c5 commit dd9ba54
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contrib/nydus-overlayfs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GIT_COMMIT := $(shell git rev-parse --verify HEAD --short=7)
BUILD_TIME := $(shell date -u +%Y%m%d.%H%M)
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
GOARCH ?= $(shell go env GOARCH)
GOPROXY ?= https://goproxy.io
GOPROXY ?=

ifdef GOPROXY
PROXY := GOPROXY=${GOPROXY}
Expand Down
2 changes: 1 addition & 1 deletion contrib/nydusify/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
GOARCH ?= $(shell go env GOARCH)
GOPROXY ?= https://goproxy.io
GOPROXY ?=

ifdef GOPROXY
PROXY := GOPROXY=${GOPROXY}
Expand Down
2 changes: 1 addition & 1 deletion smoke/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
GOPROXY ?= https://goproxy.io
GOPROXY ?=
TESTS ?= .*

ifdef GOPROXY
Expand Down

0 comments on commit dd9ba54

Please sign in to comment.