-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
misc: refactoring of build process and resolve issue with copy sa cyc…
…le (non live-rotate) (#41) * build: use latest goreleaser * feat: add dedupe command * build: remove artifact cleanup action * feat(sync): add daisy-chain parameter * chore: module updates * refactor: dep updates and forced 60sec wait in daisy chain sync mode * build: no tgz artifacts * build: dont build arm * fix(uploader/copy): correctly determine non sa usage * fix(pathutils): return error from filepath.Walk Co-authored-by: Eric Nemchik <[email protected]>
- Loading branch information
Showing
15 changed files
with
226 additions
and
252 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
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
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,45 @@ | ||
module github.com/l3uddz/crop | ||
|
||
go 1.14 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.4.5 // indirect | ||
github.com/ReneKroon/ttlcache v1.7.0 | ||
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect | ||
github.com/DataDog/zstd v1.4.8 // indirect | ||
github.com/ReneKroon/ttlcache/v2 v2.3.0 | ||
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect | ||
github.com/blang/semver v3.5.1+incompatible | ||
github.com/dgraph-io/badger/v2 v2.2007.2 // indirect | ||
github.com/dgraph-io/ristretto v0.0.3 // indirect | ||
github.com/dustin/go-humanize v1.0.0 | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/go-cmd/cmd v1.2.1 | ||
github.com/go-ole/go-ole v1.2.4 // indirect | ||
github.com/gofiber/fiber v1.14.6 | ||
github.com/gofiber/recover v0.1.2 | ||
github.com/golang/snappy v0.0.2 // indirect | ||
github.com/gorilla/schema v1.2.0 // indirect | ||
github.com/klauspost/compress v1.11.0 // indirect | ||
github.com/go-cmd/cmd v1.3.0 | ||
github.com/go-ole/go-ole v1.2.5 // indirect | ||
github.com/gofiber/fiber/v2 v2.5.0 | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/golang/snappy v0.0.3 // indirect | ||
github.com/klauspost/compress v1.11.12 // indirect | ||
github.com/magefile/mage v1.11.0 // indirect | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect | ||
github.com/natefinch/lumberjack v2.0.0+incompatible | ||
github.com/nightlyone/lockfile v1.0.0 | ||
github.com/onsi/ginkgo v1.12.0 // indirect | ||
github.com/onsi/gomega v1.9.0 // indirect | ||
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rhysd/go-github-selfupdate v1.2.2 | ||
github.com/shirou/gopsutil v2.20.8+incompatible | ||
github.com/sirupsen/logrus v1.6.0 | ||
github.com/rhysd/go-github-selfupdate v1.2.3 | ||
github.com/shirou/gopsutil v3.21.2+incompatible | ||
github.com/sirupsen/logrus v1.8.0 | ||
github.com/sony/sonyflake v1.0.0 // indirect | ||
github.com/spf13/cobra v1.0.0 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/ulikunitz/xz v0.5.8 // indirect | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/ulikunitz/xz v0.5.10 // indirect | ||
github.com/valyala/fasthttp v1.22.0 // indirect | ||
github.com/x-cray/logrus-prefixed-formatter v0.5.2 | ||
github.com/yale8848/gorpool v0.1.0 | ||
github.com/zippoxer/bow v0.0.0-20200229231453-bf1012ae7ab9 | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect | ||
golang.org/x/net v0.0.0-20200925080053-05aa5d4ee321 // indirect | ||
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect | ||
golang.org/x/sys v0.0.0-20200926100807-9d91bd62050c | ||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93 // indirect | ||
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) |
Oops, something went wrong.