Skip to content

Commit

Permalink
Merge pull request #112 from informalsystems/thane/update-deps
Browse files Browse the repository at this point in the history
Bump dependencies and Go version in CI
  • Loading branch information
thanethomson authored Nov 1, 2021
2 parents 82b647c + feb877b commit d8fb3d5
Show file tree
Hide file tree
Showing 5 changed files with 470 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: '1.15'
go-version: '1.17'

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.5.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2.3.5
- uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: "1.17"
- run: make build
- run: |
go test ./... -mod=readonly -timeout 8m -race -coverprofile=coverage.txt -covermode=atomic
Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
[![CircleCI](https://circleci.com/gh/informalsystems/tm-load-test/tree/master.svg?style=svg)](https://circleci.com/gh/informalsystems/tm-load-test/tree/master)

# tm-load-test

`tm-load-test` is a distributed load testing tool (and framework) for load
Expand All @@ -16,10 +14,7 @@ not strictly adhered to prior to a v1.0 release, so breaking API changes can
emerge with minor version releases.**

## Requirements
In order to build and use the tools, you will need:

* Go 1.13+
* `make`
`tm-load-test` is currently tested using Go v1.17.

## Building
To build the `tm-load-test` binary in the `build` directory:
Expand Down
18 changes: 14 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,25 @@ module github.com/informalsystems/tm-load-test
go 1.15

require (
github.com/btcsuite/btcd v0.22.0-beta // indirect
github.com/containerd/continuity v0.1.0 // indirect
github.com/go-kit/kit v0.12.0 // indirect
github.com/gorilla/websocket v1.4.2
github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/prometheus/client_golang v1.8.0
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/common v0.32.1 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/sasha-s/go-deadlock v0.3.1 // indirect
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.1.1
github.com/spf13/cobra v1.2.1
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca // indirect
github.com/tendermint/tendermint v0.34.14
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
google.golang.org/genproto v0.0.0-20201119123407-9b1e624d6bc4 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect
golang.org/x/sys v0.0.0-20211031064116-611d5d643895 // indirect
google.golang.org/genproto v0.0.0-20211101144312-62acf1d99145 // indirect
google.golang.org/grpc v1.41.0 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
)
Loading

0 comments on commit d8fb3d5

Please sign in to comment.