Skip to content

Commit

Permalink
Also try 16 threads
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGeRe committed May 27, 2024
1 parent fb46061 commit 94893ee
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/benchmarkKiekerJava16.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Benchmark Kieker-java (16 Threads)
on:
workflow_dispatch:
push:
branches: [ main, continuous-gh-benchmarks ]
schedule:
- cron: "0 3 * * *"


permissions:
contents: write
deployments: write

jobs:
benchmark:
name: Performance measurement
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Set up JDK ${{ matrix.java }}
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 21
- name: Execute MooBench Benchmark
run: |
./setup.sh
cd frameworks/Kieker-java/
export THREADS=16
export NUM_OF_LOOPS=10
export MOOBENCH_CONFIGURATIONS="0 1 2 4"
./benchmark.sh
cd results-Kieker-java
unzip results.zip
../../../analysis/getGHActionsFormat.sh &> output.json
cat output.json
mv output.json ../../../
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: 'Kieker-java-8'
tool: 'customSmallerIsBetter'
output-file-path: output.json
fail-on-alert: true
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true

0 comments on commit 94893ee

Please sign in to comment.