Skip to content

Commit

Permalink
Jmeterbenchmark
Browse files Browse the repository at this point in the history
test jmeter benchmarking

Signed-off-by: ruzell22 <[email protected]>
  • Loading branch information
ruzell22 committed Jan 15, 2024
1 parent 1fb2551 commit ea9b3e3
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/jmeter-benchmarking.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Benchmark.js Example
on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: write
deployments: write

jobs:
benchmark:
name: Run JavaScript benchmark example
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Run benchmark
run: cd packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs && npm install && node bench.js | tee output.txt

- name: Commit changes
run: |
git add packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/package.json
git commit -s -m "Committing changes to package.json"
if: github.event_name == 'push'

- name: Stash changes
run: git stash
if: github.event_name == 'pull_request'

- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'benchmarkjs'
output-file-path: packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/output.txt
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
# Show alert with commit comment on detecting possible performance regression
alert-threshold: '200%'
comment-on-alert: true
fail-on-alert: true

# - name: Store benchmark result - separate results repo
# uses: benchmark-action/github-action-benchmark@v1
# with:
# name: Benchmark.js Benchmark
# tool: 'benchmarkjs'
# output-file-path: packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/output.txt
# github-token: ${{ secrets.BENCHMARK_ACTION_BOT_TOKEN }}
# auto-push: true
# # Show alert with commit comment on detecting possible performance regression
# alert-threshold: '200%'
# comment-on-alert: true
# fail-on-alert: true
# gh-repository: 'github.com/benchmark-action/github-action-benchmark-results'
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
/package-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const { exec } = require('child_process');
const benchmarkBesu = "benchmark-besu";

suite
exec(`npm run ${benchmarkBesu}`, (error, stdout) => {
if (error) {
console.error();
return;
}

on("cycle", (event) => {
console.log(String(event.target));
})
.run();

// console.log(`Script output:\n${stdout}`);
});

// suite
// .add("fib(10)", () => {
// fib(10);
// })
// .add("fib(20)", () => {
// fib(20);
// })
// .on("cycle", (event) => {
// console.log(String(event.target));
// })
// .run();
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
function fib(n) {
if (n <= 1) {
return 1;
}
return fib(n - 2) + fib(n - 1);
}

exports.fib = fib;
Empty file.

0 comments on commit ea9b3e3

Please sign in to comment.