Skip to content

Commit

Permalink
Fix cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
k163377 committed Apr 14, 2024
1 parent 5cb1be6 commit 07d7256
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@ jobs:
- name: Set up gradle
uses: gradle/actions/setup-gradle@v3
- name: Benchmark Conventional
run: >
./gradlew jmh
-Pmapper=${{ matrix.benchmark.conventional.mapper }}
-PbenchmarkSet=${{ matrix.benchmark.conventional.set }}
-PisSingleShot=${{ matrix.is-single-shot }}
run: |
./gradlew jmh \
-Pmapper=${{ matrix.benchmark.conventional.mapper }} \
-PbenchmarkSet=${{ matrix.benchmark.conventional.set }} \
-PisSingleShot=${{ matrix.is-single-shot }} \
-PfileName=Conventional
- name: Benchmark Present
run: >
./gradlew jmh
jmh
-Pmapper=${{ matrix.benchmark.present.mapper }}
-PbenchmarkSet=${{ matrix.benchmark.present.set }}
-PisSingleShot=${{ matrix.is-single-shot }}
run: |
./gradlew jmh \
jmh \
-Pmapper=${{ matrix.benchmark.present.mapper }} \
-PbenchmarkSet=${{ matrix.benchmark.present.set }} \
-PisSingleShot=${{ matrix.is-single-shot }} \
-PfileName=Present
- name: Upload Reports
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 07d7256

Please sign in to comment.