-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(ci): Add goreleaser to ship binaries
- Loading branch information
1 parent
fd6ae54
commit 09438a5
Showing
2 changed files
with
179 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: goreleaser | ||
|
||
on: | ||
push: | ||
# run only against tags | ||
#tags: | ||
# - '*' | ||
branches: | ||
- '*' | ||
|
||
permissions: | ||
contents: write | ||
# packages: write | ||
# issues: write | ||
|
||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- | ||
name: Fetch all tags | ||
run: git fetch --force --tags | ||
- | ||
name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21 | ||
- | ||
name: install cross-platform build tools | ||
run: sudo apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf gcc-mingw-w64 gcc-powerpc64le-linux-gnu gcc-s390x-linux-gnu build-essential | ||
- | ||
name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
distribution: goreleaser | ||
version: latest | ||
args: release --snapshot --skip=publish --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,135 @@ | ||
project_name: beacond | ||
|
||
env: | ||
- CGO_ENABLED=1 | ||
|
||
# before: | ||
# hooks: | ||
# - go mod tidy | ||
# - go mod download | ||
|
||
builds: | ||
# - id: beacond-darwin-amd64 | ||
# binary: beacond | ||
# main: ./examples/beacond/cmd | ||
# goarch: | ||
# - amd64 | ||
# goos: | ||
# - darwin | ||
# env: | ||
# - CGO_ENABLED=1 | ||
# #- CC=o64-clang | ||
# - CGO_LDFLAGS=-L/lib | ||
# - GO111MODULE=on | ||
# flags: | ||
# - -mod=readonly | ||
# - -trimpath | ||
# tags: | ||
# - netgo | ||
# - ledger | ||
# - muslc | ||
# ldflags: | ||
# - -s -w -linkmode=external -extldflags '-Wl,-z,muldefs -static' -X github.com/cosmos/cosmos-sdk/version.Name=beacond -X github.com/cosmos/cosmos-sdk/version.AppName=beacond -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }} -X github.com/cosmos/cosmos-sdk/version.BuildTags='netgo,ledger,muslc -X github.com/cosmos/cosmos-sdk/types.DBBackend=pebbledb' | ||
|
||
# - id: beacond-darwin-arm64 | ||
# binary: beacond | ||
# main: ./examples/beacond/cmd | ||
# goarch: | ||
# - arm64 | ||
# goos: | ||
# - darwin | ||
# env: | ||
# - CGO_ENABLED=1 | ||
# - GO111MODULE=on | ||
# #- CC=oa64-clang | ||
# #- CGO_LDFLAGS=-L/lib | ||
# flags: | ||
# - -mod=readonly | ||
# - -trimpath | ||
# tags: | ||
# - netgo | ||
# - ledger | ||
# - muslc | ||
# ldflags: | ||
# - -s -w -linkmode=external -extldflags '-Wl,-z,muldefs -static' -X github.com/cosmos/cosmos-sdk/version.Name=beacond -X github.com/cosmos/cosmos-sdk/version.AppName=beacond -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }} -X github.com/cosmos/cosmos-sdk/version.BuildTags='netgo,ledger,muslc -X github.com/cosmos/cosmos-sdk/types.DBBackend=pebbledb' | ||
|
||
- id: beacond-linux-amd64 | ||
binary: beacond | ||
main: ./examples/beacond/cmd | ||
env: | ||
- CGO_ENABLED=1 | ||
- GO111MODULE=on | ||
- CC=x86_64-linux-gnu-gcc | ||
goarch: | ||
- amd64 | ||
goos: | ||
- linux | ||
flags: | ||
- -mod=readonly | ||
- -trimpath | ||
tags: | ||
- netgo | ||
- ledger | ||
- muslc | ||
ldflags: | ||
- -s -w -linkmode=external -extldflags '-Wl,-z,muldefs -static' -X github.com/cosmos/cosmos-sdk/version.Name=beacond -X github.com/cosmos/cosmos-sdk/version.AppName=beacond -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }} -X github.com/cosmos/cosmos-sdk/version.BuildTags='netgo,ledger,muslc -X github.com/cosmos/cosmos-sdk/types.DBBackend=pebbledb' | ||
|
||
- id: beacond-linux-arm64 | ||
binary: beacond | ||
main: ./examples/beacond/cmd | ||
goarch: | ||
- arm64 | ||
goos: | ||
- linux | ||
env: | ||
- CGO_ENABLED=0 | ||
#- CC=aarch64-linux-gnu-gcc | ||
flags: | ||
- -mod=readonly | ||
- -trimpath | ||
tags: | ||
- netgo | ||
- ledger | ||
- muslc | ||
ldflags: | ||
- -s -w -linkmode=external -extldflags '-Wl,-z,muldefs -static' -X github.com/cosmos/cosmos-sdk/version.Name=beacond -X github.com/cosmos/cosmos-sdk/version.AppName=beacond -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }} -X github.com/cosmos/cosmos-sdk/version.BuildTags='netgo,ledger,muslc -X github.com/cosmos/cosmos-sdk/types.DBBackend=pebbledb' | ||
|
||
# universal_binaries: | ||
# - id: beacond-darwin-universal | ||
# ids: | ||
# - beacond-darwin-amd64 | ||
# - beacond-darwin-arm64 | ||
# replace: true | ||
# name_template: "beacond" | ||
archives: | ||
- id: w/version | ||
builds: | ||
# - beacond-darwin-universal | ||
- beacond-linux-amd64 | ||
# - beacond-linux-arm64 | ||
name_template: "beacond_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
wrap_in_directory: false | ||
format: tar.gz | ||
files: | ||
- none* | ||
- id: wo/version | ||
builds: | ||
# - beacond-darwin-universal | ||
- beacond-linux-amd64 | ||
# - beacond-linux-arm64 | ||
name_template: "beacond_{{ .Os }}_{{ .Arch }}" | ||
wrap_in_directory: false | ||
format: tar.gz | ||
files: | ||
- none* | ||
|
||
#dflags: | ||
# -linkmode=external | ||
#- -s -w -extldflags '-Wl,-z,muldefs -static' -X github.com/cosmos/cosmos-sdk/version.Name=beacond -X github.com/cosmos/cosmos-sdk/version.AppName=beacond -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }} -X github.com/cosmos/cosmos-sdk/version.BuildTags='netgo,ledger,muslc -X github.com/cosmos/cosmos-sdk/types.DBBackend=pebbledb' | ||
|
||
checksum: | ||
name_template: 'checksums.txt' | ||
snapshot: | ||
name_template: "{{ incpatch .Version }}-next" | ||
changelog: | ||
sort: asc |