Skip to content

Commit

Permalink
Unify JSON files
Browse files Browse the repository at this point in the history
  • Loading branch information
zeux committed Jul 5, 2022
1 parent d713208 commit 569f6e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,23 +74,23 @@ jobs:
name: callgrind ${{ matrix.compiler }}
tool: "benchmarkluau"
output-file-path: ./bench-output.txt
external-data-json-path: ./gh-pages/bench/data.json
external-data-json-path: ./gh-pages/bench.json

- name: Store results (analyze)
uses: Roblox/rhysd-github-action-benchmark@v-luau
with:
name: luau-analyze
tool: "benchmarkluau"
output-file-path: ./analyze-output.txt
external-data-json-path: ./gh-pages/analyze/data.json
external-data-json-path: ./gh-pages/analyze.json

- name: Store results (compile)
uses: Roblox/rhysd-github-action-benchmark@v-luau
with:
name: luau --compile
tool: "benchmarkluau"
output-file-path: ./compile-output.txt
external-data-json-path: ./gh-pages/compile/data.json
external-data-json-path: ./gh-pages/compile.json

- name: Push benchmark results
if: github.event_name == 'push'
Expand All @@ -99,7 +99,7 @@ jobs:
cd gh-pages
git config user.name github-actions
git config user.email github@users.noreply.github.com
git add ./bench/data.json ./analyze/data.json ./compile/data.json
git add *.json
git commit -m "Add benchmarks results for ${{ github.sha }}"
git push
cd ..

0 comments on commit 569f6e9

Please sign in to comment.