Skip to content

Commit

Permalink
Testing fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mtgnoah committed Oct 12, 2023
1 parent cb22486 commit 327ad2e
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ linters:
- staticcheck
- bodyclose
- structcheck
- lll
# - lll
# - gomnd
- goprintffuncname
- interfacer
Expand Down Expand Up @@ -113,4 +113,4 @@ linters-settings:
packages-with-error-message:
- io/ioutil: 'io/ioutil is deprecated. Use package io or os instead.'
- github.com/stretchr/testify/assert: 'github.com/stretchr/testify/require should be used instead.'
include-go-root: true
include-go-root: true
67 changes: 66 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,73 @@ builds:
goamd64: v1
env:
- CC=o64-clang
- id: token-faucet
main: ./cmd/token-faucet
binary: token-faucet
flags:
- -v
goos:
- linux
- darwin
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=1
- CGO_CFLAGS=-O -D__BLST_PORTABLE__ # Set the CGO flags to use the portable version of BLST
overrides:
- goos: linux
goarch: arm64
env:
- CC=aarch64-linux-gnu-gcc
- goos: darwin
goarch: arm64
env:
- CC=oa64-clang
- goos: darwin
goarch: amd64
goamd64: v1
env:
- CC=o64-clang
- id: token-feed
main: ./cmd/token-feed
binary: token-feed
flags:
- -v
goos:
- linux
- darwin
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=1
- CGO_CFLAGS=-O -D__BLST_PORTABLE__ # Set the CGO flags to use the portable version of BLST
overrides:
- goos: linux
goarch: arm64
env:
- CC=aarch64-linux-gnu-gcc
- goos: darwin
goarch: arm64
env:
- CC=oa64-clang
- goos: darwin
goarch: amd64
goamd64: v1
env:
- CC=o64-clang

checksum:
name_template: "tokenvm_checksums.txt"

archives:
- id: default
name_template: 'tokenvm_{{ .Version }}_{{ .Os }}_{{ .Arch }}'

release:
make_latest: false # Should be done manually
mode: 'keep-existing' # Should not override releases
github:
owner: AnomalyFi
name: nodekit-seq
name: nodekit-seq

0 comments on commit 327ad2e

Please sign in to comment.