File tree 5 files changed +7
-6
lines changed
5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 13
13
env :
14
14
CURL_CMD : curl --proto =https --tlsv1.2 --location --silent --show-error --fail
15
15
GORELEASER_URL_PREFIX : https://github.com/goreleaser/goreleaser/releases/download/
16
- GORELEASER_VERSION : 0.152 .0
16
+ GORELEASER_VERSION : 2.9 .0
17
17
JEMALLOC_URL_PREFIX : https://github.com/jemalloc/jemalloc/releases/download/
18
18
JEMALLOC_VERSION : 5.2.1
19
19
JEMALLOC_CHECKSUM : 34330e5ce276099e2e8950d9335db5a875689a4c6a56751ef3b1d8c537f887f6
64
64
cd $(mktemp --directory /tmp/goreleaser.XXXXX)
65
65
${CURL_CMD} ${GORELEASER_URL_PREFIX}/v${GORELEASER_VERSION}/${GORELEASER_TARBALL} \
66
66
--output ${GORELEASER_TARBALL}
67
- ${CURL_CMD} ${GORELEASER_URL_PREFIX}/v${GORELEASER_VERSION}/goreleaser_checksums .txt \
67
+ ${CURL_CMD} ${GORELEASER_URL_PREFIX}/v${GORELEASER_VERSION}/checksums .txt \
68
68
--output CHECKSUMS
69
69
sha256sum --check --ignore-missing CHECKSUMS
70
70
tar -xf ${GORELEASER_TARBALL}
Original file line number Diff line number Diff line change 15
15
env :
16
16
CURL_CMD : curl --proto =https --tlsv1.2 --location --silent --show-error --fail
17
17
GORELEASER_URL_PREFIX : https://github.com/goreleaser/goreleaser/releases/download/
18
- GORELEASER_VERSION : 0.152 .0
18
+ GORELEASER_VERSION : 2.9 .0
19
19
JEMALLOC_URL_PREFIX : https://github.com/jemalloc/jemalloc/releases/download/
20
20
JEMALLOC_VERSION : 5.2.1
21
21
JEMALLOC_CHECKSUM : 34330e5ce276099e2e8950d9335db5a875689a4c6a56751ef3b1d8c537f887f6
71
71
cd $(mktemp --directory /tmp/goreleaser.XXXXX)
72
72
${CURL_CMD} ${GORELEASER_URL_PREFIX}/v${GORELEASER_VERSION}/${GORELEASER_TARBALL} \
73
73
--output ${GORELEASER_TARBALL}
74
- ${CURL_CMD} ${GORELEASER_URL_PREFIX}/v${GORELEASER_VERSION}/goreleaser_checksums .txt \
74
+ ${CURL_CMD} ${GORELEASER_URL_PREFIX}/v${GORELEASER_VERSION}/checksums .txt \
75
75
--output CHECKSUMS
76
76
sha256sum --check --ignore-missing CHECKSUMS
77
77
tar -xf ${GORELEASER_TARBALL}
Original file line number Diff line number Diff line change 5
5
# NOTE: The GoReleaser is not meant to be run directly, but rather through
6
6
# Make's release-build target.
7
7
8
+ version : 2
8
9
project_name : Oasis Core
9
10
10
11
env :
@@ -85,7 +86,7 @@ checksum:
85
86
algorithm : sha256
86
87
87
88
snapshot :
88
- name_template : " {{.Version}}-dev"
89
+ version_template : " {{.Version}}-dev"
89
90
90
91
release :
91
92
name_template : " {{.ProjectName}} {{.Version}}"
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ the [Change Log] for **Removals and Breaking changes**.*
333
333
endef
334
334
335
335
# Instruct GoReleaser to create a "snapshot" release by default.
336
- GORELEASER_ARGS ?= release --snapshot --rm-dist
336
+ GORELEASER_ARGS ?= release --snapshot --clean
337
337
# If the appropriate environment variable is set, create a real release.
338
338
ifeq ($(OASIS_CORE_REAL_RELEASE ) , true)
339
339
# Create temporary file with GitHub release's text.
You can’t perform that action at this time.
0 commit comments