Skip to content

Commit

Permalink
Update benchmark.yml
Browse files Browse the repository at this point in the history
Switch to bench.json file so that bench-gcc is the only outlier, as everything else is built with clang.
  • Loading branch information
zeux committed Aug 11, 2022
1 parent f7d8ad0 commit 8b390a3
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ on:

jobs:
callgrind:
name: callgrind
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
benchResultsRepo:
Expand Down Expand Up @@ -44,9 +42,9 @@ jobs:
run: |
python bench/bench.py --callgrind --vm "./luau-gcc -O2" | tee -a bench-gcc-output.txt
- name: Run benchmark (bench-clang)
- name: Run benchmark (bench)
run: |
python bench/bench.py --callgrind --vm "./luau -O2" | tee -a bench-clang-output.txt
python bench/bench.py --callgrind --vm "./luau -O2" | tee -a bench-output.txt
- name: Run benchmark (analyze)
run: |
Expand Down Expand Up @@ -78,13 +76,13 @@ jobs:
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
path: "./gh-pages"

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

- name: Store results (bench-gcc)
uses: Roblox/rhysd-github-action-benchmark@v-luau
Expand Down

0 comments on commit 8b390a3

Please sign in to comment.