Skip to content

Commit

Permalink
Fix kt-bench.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ephemient committed Dec 1, 2024
1 parent ef7ce87 commit 093d315
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/kt-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [ jvm, js, linuxX64 ]
target: [ jvm, linuxX64 ]

steps:
- uses: actions/checkout@v4
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true
- run: ./gradlew ${{ matrix.target }}Benchmark
- run: ./gradlew ${{ matrix.target }}BenchBenchmark
working-directory: kt
env:
AOC2024_DATADIR: ${{ github.workspace }}/inputs
Expand All @@ -89,10 +89,6 @@ jobs:
with:
name: jvm-benchmarks
path: benchmarks
- uses: actions/download-artifact@v4
with:
name: js-benchmarks
path: benchmarks
- uses: actions/download-artifact@v4
with:
name: linuxX64-benchmarks
Expand All @@ -106,6 +102,7 @@ jobs:
for file in benchmarks/main/*/*.json; do
name=${file##*/}
name=${name%.*}
name=${name%Bench}
names+=("$name")
jsonargs+=(--slurpfile "$name" "$file")
done
Expand Down

0 comments on commit 093d315

Please sign in to comment.