-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-picks for 2.10.17-RC.7 (#5572)
Includes: * #5571 * #5082 * #5573 * #5574 * #5575 * #5577 * #5578 * #5580 * #5559 Signed-off-by: Neil Twigg <[email protected]>
- Loading branch information
Showing
11 changed files
with
799 additions
and
380 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: MQTT external test | ||
on: [pull_request] | ||
|
||
jobs: | ||
test: | ||
env: | ||
GOPATH: /home/runner/work/nats-server | ||
GO111MODULE: "on" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
path: src/github.com/nats-io/nats-server | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: src/github.com/nats-io/nats-server/go.mod | ||
cache-dependency-path: src/github.com/nats-io/nats-server/go.sum | ||
|
||
- name: Set up testing tools and environment | ||
shell: bash --noprofile --norc -eo pipefail {0} | ||
id: setup | ||
run: | | ||
wget https://github.com/hivemq/mqtt-cli/releases/download/v4.20.0/mqtt-cli-4.20.0.deb | ||
sudo apt install ./mqtt-cli-4.20.0.deb | ||
go install github.com/ConnectEverything/[email protected] | ||
- name: Run tests (3 times to detect flappers) | ||
shell: bash --noprofile --norc -eo pipefail {0} | ||
run: | | ||
cd src/github.com/nats-io/nats-server | ||
go test -v --count=3 --run='TestXMQTT' ./server | ||
- name: Run tests with --race | ||
shell: bash --noprofile --norc -eo pipefail {0} | ||
run: | | ||
cd src/github.com/nats-io/nats-server | ||
go test -v --race --failfast --run='TestXMQTT' ./server | ||
- name: Run benchmarks | ||
shell: bash --noprofile --norc -eo pipefail {0} | ||
run: | | ||
cd src/github.com/nats-io/nats-server | ||
go test --run='-' --count=3 --bench 'BenchmarkXMQTT' --benchtime=100x ./server | ||
# TODO: compare benchmarks |
Oops, something went wrong.