Modified workflow triggers #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Benchmark Kieker-java Extra | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ daily ] | |
| schedule: | |
| - cron: "0 3 * * *" | |
| permissions: | |
| contents: write | |
| deployments: write | |
| jobs: | |
| benchmark: | |
| strategy: | |
| matrix: | |
| tags: | |
| - 2025-01-09_190438UTC0 | |
| - 2025-01-10_124403UTC0 | |
| os: | |
| - ubuntu-24.04 | |
| - ubuntu-22.04 | |
| name: Performance measurement | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ matrix.tags }} | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: '3.5.3' | |
| - name: Execute MooBench Benchmark | |
| run: | | |
| ./setup.sh | |
| cd frameworks/Kieker-java/ | |
| 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 ../../../ |