-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from zemyblue/feat/apply_v2.0.1
feat: apply the changes of Finschia v2.0.1
- Loading branch information
Showing
13 changed files
with
1,791 additions
and
7,291 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,112 @@ | ||
# This is an example goreleaser.yaml file with some sane defaults. | ||
# Make sure to check the documentation at http://goreleaser.com | ||
before: | ||
hooks: | ||
# you may remove this if you don't need go generate | ||
- go generate ./... | ||
project_name: fnsad-proxy | ||
|
||
env: | ||
- CGO_ENABLED=1 | ||
|
||
builds: | ||
- | ||
id: "finschia" | ||
main: ./cmd/fnsad-proxy | ||
binary: build/fnsad-proxy | ||
env: | ||
- CGO_ENABLED=0 | ||
flags: | ||
- -mod=readonly | ||
- -tags=netgo ledger | ||
ldflags: | ||
- -X github.com/Finschia/finschia-sdk/version.Name=finschia | ||
- -X github.com/Finschia/finschia-sdk/version.ServerName=fnsad-proxy | ||
- -X github.com/Finschia/finschia-sdk/version.Version={{ .Version }} | ||
- -X github.com/Finschia/finschia-sdk/version.Commit={{ .FullCommit }} | ||
- -X "github.com/Finschia/finschia-sdk/version.BuildTags=netgo,ledger" | ||
- id: darwin | ||
main: ./cmd/fnsad-proxy | ||
binary: fnsad-proxy | ||
hooks: | ||
pre: | ||
- wget https://github.com/Finschia/wasmvm/releases/download/{{ .Env.WASMVM_VERSION }}/libwasmvmstatic_darwin.a -O /lib/libwasmvmstatic_darwin.a | ||
goos: | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
env: | ||
- CC=o64-clang | ||
- CGO_LDFLAGS=-L/lib | ||
flags: | ||
- -mod=readonly | ||
- -trimpath | ||
ldflags: | ||
- -X github.com/Finschia/finschia-sdk/version.Name=finschia-proxy | ||
- -X github.com/Finschia/finschia-sdk/version.AppName=fnsad-proxy | ||
- -X github.com/Finschia/finschia-sdk/version.Version={{ .Version }} | ||
- -X github.com/Finschia/finschia-sdk/version.Commit={{ .Commit }} | ||
- -X github.com/Finschia/finschia-sdk/types.DBBackend=goleveldb | ||
- -X github.com/Finschia/finschia-sdk/version.BuildTags=netgo,ledger,static_wasm | ||
- -X github.com/Finschia/ostracon/version.TMCoreSemVer={{ .Env.OST_VERSION }} | ||
- -s -w | ||
- -linkmode=external | ||
tags: | ||
- netgo | ||
- ledger | ||
- static_wasm | ||
overrides: | ||
- goos: darwin | ||
goarch: arm64 | ||
env: | ||
- CC=oa64-clang | ||
|
||
- id: linux | ||
main: ./cmd/fnsad-proxy | ||
binary: fnsad-proxy | ||
hooks: | ||
pre: | ||
- wget https://github.com/Finschia/wasmvm/releases/download/{{ .Env.WASMVM_VERSION }}/libwasmvm_muslc.x86_64.a -O /usr/lib/x86_64-linux-gnu/libwasmvm_muslc.a | ||
- wget https://github.com/Finschia/wasmvm/releases/download/{{ .Env.WASMVM_VERSION }}/libwasmvm_muslc.aarch64.a -O /usr/lib/aarch64-linux-gnu/libwasmvm_muslc.a | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
env: | ||
- CC=x86_64-linux-gnu-gcc | ||
flags: | ||
- -mod=readonly | ||
- -trimpath | ||
ldflags: | ||
- -X github.com/Finschia/finschia-sdk/version.Name=finschia-proxy | ||
- -X github.com/Finschia/finschia-sdk/version.AppName=fnsad-proxy | ||
- -X github.com/Finschia/finschia-sdk/version.Version={{ .Version }} | ||
- -X github.com/Finschia/finschia-sdk/version.Commit={{ .Commit }} | ||
- -X github.com/Finschia/finschia-sdk/types.DBBackend=goleveldb | ||
- -X "github.com/Finschia/finschia-sdk/version.BuildTags=netgo,osusergo,ledger,muslc" | ||
- -X github.com/Finschia/ostracon/version.TMCoreSemVer={{ .Env.OST_VERSION }} | ||
- -w -s | ||
- -linkmode=external | ||
- -extldflags '-Wl,-z,muldefs -static -lm' | ||
tags: | ||
- netgo | ||
- osusergo | ||
- ledger | ||
- muslc | ||
overrides: | ||
- goos: linux | ||
goarch: arm64 | ||
env: | ||
- CC=aarch64-linux-gnu-gcc | ||
|
||
universal_binaries: | ||
- id: darwin | ||
|
||
archives: | ||
- | ||
builds: ['fnsad-proxy'] | ||
replacements: | ||
darwin: Darwin | ||
linux: Linux | ||
windows: Windows | ||
386: i386 | ||
amd64: x86_64 | ||
files: | ||
- LICENSE | ||
- docs/getting-started/* | ||
# disables archiving; to enable use commented lines below | ||
- id: binaries | ||
format: binary | ||
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}" | ||
|
||
# - id: zip | ||
# format: tar.gz | ||
# wrap_in_directory: true | ||
# name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}" | ||
# files: | ||
# - LICENSE | ||
# - RELEASE_CHANGELOG.md | ||
|
||
release: | ||
name_template: "v{{.Version}}" | ||
draft: true | ||
|
||
checksum: | ||
name_template: 'checksums.txt' | ||
name_template: "sha256sum-v{{ .Version }}.txt" | ||
algorithm: sha256 | ||
|
||
snapshot: | ||
name_template: "{{ .Tag }}-next" | ||
name_template: SNAPSHOT-{{ .Commit }} | ||
|
||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
skip: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.