diff --git a/.gitignore b/.gitignore index e515dbf7a..5bb1e853c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ cover.out go.work* *.jar -report -node_modules \ No newline at end of file +node_modules +dist diff --git a/.goreleaser.yml b/.goreleaser.yml index 5d4b398ed..9e6beac2c 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -18,9 +18,27 @@ builds: - CGO_ENABLED=0 goos: - linux + - darwin goarch: - amd64 - arm64 + - binary: benchmarks + id: benchmarks + ldflags: + - -extldflags "-static" + env: + - CGO_ENABLED=0 + goos: + - linux + - darwin + goarch: + - amd64 + - arm64 + command: test + dir: test/performance + no_main_check: true + tags: + - it release: prerelease: auto diff --git a/test/performance/.gitignore b/test/performance/.gitignore new file mode 100644 index 000000000..05c319264 --- /dev/null +++ b/test/performance/.gitignore @@ -0,0 +1 @@ +report