File tree 3 files changed +73
-0
lines changed
3 files changed +73
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Benchmark Test
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ benchmark :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Checkout code
13
+ uses : actions/checkout@v4
14
+ with :
15
+ fetch-depth : 0
16
+
17
+ - name : Install Go
18
+ uses : actions/setup-go@v5
19
+ with :
20
+ go-version-file : go.mod
21
+
22
+ - name : Install dependencies
23
+ run : |
24
+ go mod download
25
+ go mod tidy
26
+
27
+ # - name: Debug via SSH
28
+ # uses: mxschmitt/action-tmate@v3
29
+
30
+ - name : Run benchmark test
31
+ # working-directory: test/e2e
32
+ run : |
33
+ mkdir -p /tmp/artifacts/
34
+ ARTIFACT_PATH=/tmp/artifacts make test-benchmark
35
+
36
+ - name : Compare with baseline
37
+ run : |
38
+ go install golang.org/x/perf/cmd/benchstat@latest
39
+ benchstat benchmarks/baseline.txt /tmp/artifacts/new.txt | tee /tmp/artifacts/output
40
+
41
+ - name : Upload benchmark results
42
+ uses : actions/upload-artifact@v4
43
+ with :
44
+ name : benchmark-artifacts
45
+ path : /tmp/artifacts/
46
+
Original file line number Diff line number Diff line change @@ -153,6 +153,11 @@ test: manifests generate fmt lint test-unit test-e2e #HELP Run all tests.
153
153
e2e : # EXHELP Run the e2e tests.
154
154
go test -count=1 -v ./test/e2e/...
155
155
156
+ .PHONY : benchmark
157
+ benchmark : # EXHELP Run the benchmark tests.
158
+ export CATALOG_IMG=registry.redhat.io/redhat/redhat-operator-index:v4.18
159
+ go test -v -run=^$$ -bench=. -benchmem -count=10 -v ./test/e2e/... | tee /tmp/artifacts/new.txt
160
+
156
161
E2E_REGISTRY_NAME := docker-registry
157
162
E2E_REGISTRY_NAMESPACE := operator-controller-e2e
158
163
@@ -209,6 +214,12 @@ test-e2e: KUSTOMIZE_BUILD_DIR := config/overlays/e2e
209
214
test-e2e : GO_BUILD_FLAGS := -cover
210
215
test-e2e : run image-registry e2e e2e-coverage kind-clean # HELP Run e2e test suite on local kind cluster
211
216
217
+ .PHONY : test-benchmark
218
+ test-benchmark : KIND_CLUSTER_NAME := operator-controller-benchmark
219
+ test-benchmark : KUSTOMIZE_BUILD_DIR := config/overlays/e2e
220
+ test-benchmark : GO_BUILD_FLAGS := -cover
221
+ test-benchmark : run image-registry benchmark kind-clean # HELP Run benchmark test suite on local kind cluster
222
+
212
223
.PHONY : extension-developer-e2e
213
224
extension-developer-e2e : KUSTOMIZE_BUILD_DIR := config/overlays/cert-manager
214
225
extension-developer-e2e : KIND_CLUSTER_NAME := operator-controller-ext-dev-e2e # EXHELP Run extension-developer e2e on local kind cluster
Original file line number Diff line number Diff line change
1
+ goos: darwin
2
+ goarch: arm64
3
+ pkg: github.com/operator-framework/operator-controller/test/e2e
4
+ cpu: Apple M1 Pro
5
+ BenchmarkCreateClusterCatalog-10 1 1352852042 ns/op 404520 B/op 3914 allocs/op
6
+ BenchmarkCreateClusterCatalog-10 13 86982353 ns/op 36907 B/op 394 allocs/op
7
+ BenchmarkCreateClusterCatalog-10 12 84962496 ns/op 34555 B/op 393 allocs/op
8
+ BenchmarkCreateClusterCatalog-10 18 70375363 ns/op 34880 B/op 388 allocs/op
9
+ BenchmarkCreateClusterCatalog-10 15 71715708 ns/op 37654 B/op 399 allocs/op
10
+ BenchmarkCreateClusterCatalog-10 13 85251170 ns/op 36572 B/op 396 allocs/op
11
+ BenchmarkCreateClusterCatalog-10 13 83413260 ns/op 38435 B/op 393 allocs/op
12
+ BenchmarkCreateClusterCatalog-10 13 93851487 ns/op 37249 B/op 395 allocs/op
13
+ BenchmarkCreateClusterCatalog-10 13 78722212 ns/op 36593 B/op 393 allocs/op
14
+ BenchmarkCreateClusterCatalog-10 13 86393522 ns/op 37404 B/op 395 allocs/op
15
+ PASS
16
+ ok github.com/operator-framework/operator-controller/test/e2e 32.699s
You can’t perform that action at this time.
0 commit comments