Skip to content

Commit

Permalink
Merge pull request #2354 from containers/renovate/major-ci-vm-image
Browse files Browse the repository at this point in the history
chore(deps): update dependency containers/automation_images to v20240320
  • Loading branch information
mtrmac authored Mar 26, 2024
2 parents ec11230 + b6b60bf commit 151a467
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ env:
SKOPEO_PR:

# Google-cloud VM Images
IMAGE_SUFFIX: "c20240125t184057z-f39f38d13"
IMAGE_SUFFIX: "c20240320t153921z-f39f38d13"
FEDORA_CACHE_IMAGE_NAME: "fedora-${IMAGE_SUFFIX}"
DEBIAN_CACHE_IMAGE_NAME: "debian-${IMAGE_SUFFIX}"

Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ BUILD_TAGS_DARWIN_CROSS = containers_image_openpgp
BUILDTAGS = btrfs_noversion libdm_no_deferred_remove
BUILDFLAGS := -tags "$(BUILDTAGS)"

PACKAGES := $(shell GO111MODULE=on go list $(BUILDFLAGS) ./...)
PACKAGES := $(shell go list $(BUILDFLAGS) ./...)
SOURCE_DIRS = $(shell echo $(PACKAGES) | awk 'BEGIN{FS="/"; RS=" "}{print $$4}' | uniq)

PREFIX ?= ${DESTDIR}/usr
Expand All @@ -41,7 +41,7 @@ export PATH := $(PATH):${GOBIN}
all: tools test validate .gitvalidation

build:
GO111MODULE="on" go build $(BUILDFLAGS) ./...
go build $(BUILDFLAGS) ./...

$(MANPAGES): %: %.md
$(GOMD2MAN) -in $< -out $@
Expand All @@ -66,7 +66,7 @@ tools: .install.gitvalidation .install.golangci-lint

.install.gitvalidation:
if [ ! -x "$(GOBIN)/git-validation" ]; then \
GO111MODULE="off" go get $(BUILDFLAGS) github.com/vbatts/git-validation; \
go install github.com/vbatts/git-validation@latest; \
fi

.install.golangci-lint:
Expand All @@ -78,7 +78,7 @@ clean:
rm -rf $(MANPAGES)

test:
@GO111MODULE="on" go test $(BUILDFLAGS) -cover ./...
@go test $(BUILDFLAGS) -cover ./...

fmt:
@gofmt -l -s -w $(SOURCE_DIRS)
Expand Down
2 changes: 1 addition & 1 deletion hack/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [[ -z $(type -P gofmt) ]]; then
fi

echo "Executing go vet"
GO111MODULE="on" go vet -tags="$BUILDTAGS" ./...
go vet -tags="$BUILDTAGS" ./...

echo "Executing gofmt"
OUTPUT=$(gofmt -s -l . | sed -e '/^vendor/d')
Expand Down

0 comments on commit 151a467

Please sign in to comment.