From c89131bcf3851505c2ff5f7ca3ae66b1b6a725d4 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Fri, 25 Feb 2022 11:32:57 -0500 Subject: [PATCH] Bump release timeout (#848) --- .goreleaser.yaml | 5 +++-- Makefile | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 5b6031dc1..86b742b9d 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -43,8 +43,9 @@ builds: ldflags: *build-ldflags hooks: post: - # we must have signing as a build hook instead of the signs section. The signs section must register a new asset, where we want to replace an existing asset. - # a post-build hook has the advantage of not needing to unpackage and repackage a tar.gz with a signed binary + # we must have signing as a build hook instead of the signs section. The signs section must register a new + # asset, where we want to replace an existing asset. A post-build hook has the advantage of not needing to + # unpackage and repackage a tar.gz with a signed binary - ./.github/scripts/apple-signing/sign.sh "{{ .Path }}" "{{ .IsSnapshot }}" "{{ .Target }}" - id: windows-build diff --git a/Makefile b/Makefile index 3be7e6d5a..aa43b8026 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ RESULTSDIR = test/results COVER_REPORT = $(RESULTSDIR)/unit-coverage-details.txt COVER_TOTAL = $(RESULTSDIR)/unit-coverage-summary.txt LINTCMD = $(TEMPDIR)/golangci-lint run --tests=false --timeout=4m --config .golangci.yaml -RELEASE_CMD=$(TEMPDIR)/goreleaser release --rm-dist +RELEASE_CMD=$(TEMPDIR)/goreleaser release --rm-dist --timeout 60m SNAPSHOT_CMD=$(RELEASE_CMD) --skip-publish --snapshot VERSION=$(shell git describe --dirty --always --tags) COMPARE_TEST_IMAGE = centos:8.2.2004