Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dependencies, add cross compilation test #48

Merged
merged 1 commit into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- name: Test
run: |
go test --race --covermode=atomic ./...
GOARCH=386 go test -short ./...

linting:
runs-on: ubuntu-latest
Expand Down
23 changes: 12 additions & 11 deletions cmd/pbzip2/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,24 @@ go 1.21
replace github.com/cosnicolaou/pbzip2 => ../../

require (
cloudeng.io/cmdutil v0.0.0-20240129012055-33b7697304d1
cloudeng.io/errors v0.0.9
github.com/aws/aws-sdk-go v1.50.6
github.com/cosnicolaou/pbzip2 v1.0.3
github.com/grailbio/base v0.0.10
cloudeng.io/cmdutil v0.0.0-20241212010801-28885fa601e0
cloudeng.io/errors v0.0.10
github.com/aws/aws-sdk-go v1.55.5
github.com/cosnicolaou/pbzip2 v1.0.5
github.com/grailbio/base v0.0.11
github.com/schollz/progressbar/v2 v2.15.0
golang.org/x/crypto v0.18.0
golang.org/x/crypto v0.31.0
)

require (
cloudeng.io/file v0.0.0-20240129012055-33b7697304d1 // indirect
cloudeng.io/path v0.0.8 // indirect
cloudeng.io/file v0.0.0-20241212010801-28885fa601e0 // indirect
cloudeng.io/text v0.0.11 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/term v0.16.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
v.io v0.2.0 // indirect
v.io/x/lib v0.1.21 // indirect
)
Loading
Loading