Skip to content

Commit

Permalink
Run benchmarks separately for accuracy
Browse files Browse the repository at this point in the history
  • Loading branch information
awnumar committed Jul 21, 2019
1 parent 174f3a1 commit 79bffd0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ linux_task:
- go build -race -v ./...
test_script:
- go test -race -v ./...
benchmark_script:
- go test -run=XXX -bench=. .

osx_task:
osx_instance:
Expand All @@ -49,6 +51,8 @@ osx_task:
- go build -race -v ./...
test_script:
- go test -race -v ./...
benchmark_script:
- go test -run=XXX -bench=. .

windows_task:
windows_container:
Expand All @@ -64,6 +68,8 @@ windows_task:
- go build -race -v ./...
test_script:
- go test -race -v ./...
benchmark_script:
- go test -run=XXX -bench=. .

freebsd_task:
freebsd_instance:
Expand All @@ -89,3 +95,5 @@ freebsd_task:
- go build -race -v ./...
test_script:
- go test -race -v ./...
benchmark_script:
- go test -run=XXX -bench=. .

0 comments on commit 79bffd0

Please sign in to comment.