Skip to content

Commit

Permalink
Merge pull request #17 from cloudradar-monitoring/dev/release
Browse files Browse the repository at this point in the history
not building for 32bit
  • Loading branch information
thorstenkramm authored Jul 21, 2022
2 parents 46686c1 + 2fce22c commit d21a51c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
9 changes: 2 additions & 7 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,19 @@ builds:
- darwin
- windows
goarch:
- 386
- amd64
- arm
- arm64
goarm:
- 6
- 7
gomips:
- hardfloat
- softfloat
ignore:
- goos: darwin
goarch: 386
# TODO: remove when https://github.com/go-ole/go-ole/issues/202 will be fixed
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
- goos: darwin
goarch: arm64
archives:
- id: rportcli
builds:
Expand Down
15 changes: 12 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cloudradar-monitoring/rportcli

go 1.16
go 1.18

require (
github.com/breathbath/go_utils/v2 v2.0.1
Expand All @@ -9,11 +9,9 @@ require (
github.com/fatih/color v1.10.0
github.com/gorilla/websocket v1.4.2
github.com/magiconair/properties v1.8.4
github.com/mattn/go-runewidth v0.0.10 // indirect
github.com/nathan-fiscaletti/consolesize-go v0.0.0-20210105204122-a87d9f614b9d
github.com/olekukonko/tablewriter v0.0.4
github.com/pkg/errors v0.8.1
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.1.1
github.com/spf13/pflag v1.0.5
Expand All @@ -22,3 +20,14 @@ require (
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.10 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/stretchr/objx v0.1.1 // indirect
)

0 comments on commit d21a51c

Please sign in to comment.