mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
Bump release timeout (#848)
This commit is contained in:
parent
6c306efed2
commit
c89131bcf3
2 changed files with 4 additions and 3 deletions
|
@ -43,8 +43,9 @@ builds:
|
||||||
ldflags: *build-ldflags
|
ldflags: *build-ldflags
|
||||||
hooks:
|
hooks:
|
||||||
post:
|
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.
|
# we must have signing as a build hook instead of the signs section. The signs section must register a new
|
||||||
# a post-build hook has the advantage of not needing to unpackage and repackage a tar.gz with a signed binary
|
# 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 }}"
|
- ./.github/scripts/apple-signing/sign.sh "{{ .Path }}" "{{ .IsSnapshot }}" "{{ .Target }}"
|
||||||
|
|
||||||
- id: windows-build
|
- id: windows-build
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@ RESULTSDIR = test/results
|
||||||
COVER_REPORT = $(RESULTSDIR)/unit-coverage-details.txt
|
COVER_REPORT = $(RESULTSDIR)/unit-coverage-details.txt
|
||||||
COVER_TOTAL = $(RESULTSDIR)/unit-coverage-summary.txt
|
COVER_TOTAL = $(RESULTSDIR)/unit-coverage-summary.txt
|
||||||
LINTCMD = $(TEMPDIR)/golangci-lint run --tests=false --timeout=4m --config .golangci.yaml
|
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
|
SNAPSHOT_CMD=$(RELEASE_CMD) --skip-publish --snapshot
|
||||||
VERSION=$(shell git describe --dirty --always --tags)
|
VERSION=$(shell git describe --dirty --always --tags)
|
||||||
COMPARE_TEST_IMAGE = centos:8.2.2004
|
COMPARE_TEST_IMAGE = centos:8.2.2004
|
||||||
|
|
Loading…
Reference in a new issue