mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-10 22:00:54 +01:00
Update benchmark.yml
Switch to bench.json file so that bench-gcc is the only outlier, as everything else is built with clang.
This commit is contained in:
parent
f7d8ad0774
commit
8b390a33aa
1 changed files with 5 additions and 7 deletions
12
.github/workflows/benchmark.yml
vendored
12
.github/workflows/benchmark.yml
vendored
|
@ -13,9 +13,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
callgrind:
|
callgrind:
|
||||||
name: callgrind
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-22.04]
|
os: [ubuntu-22.04]
|
||||||
benchResultsRepo:
|
benchResultsRepo:
|
||||||
|
@ -44,9 +42,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python bench/bench.py --callgrind --vm "./luau-gcc -O2" | tee -a bench-gcc-output.txt
|
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: |
|
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)
|
- name: Run benchmark (analyze)
|
||||||
run: |
|
run: |
|
||||||
|
@ -78,13 +76,13 @@ jobs:
|
||||||
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
path: "./gh-pages"
|
path: "./gh-pages"
|
||||||
|
|
||||||
- name: Store results (bench-clang)
|
- name: Store results (bench)
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
with:
|
with:
|
||||||
name: callgrind clang
|
name: callgrind clang
|
||||||
tool: "benchmarkluau"
|
tool: "benchmarkluau"
|
||||||
output-file-path: ./bench-clang-output.txt
|
output-file-path: ./bench-output.txt
|
||||||
external-data-json-path: ./gh-pages/bench-clang.json
|
external-data-json-path: ./gh-pages/bench.json
|
||||||
|
|
||||||
- name: Store results (bench-gcc)
|
- name: Store results (bench-gcc)
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
|
|
Loading…
Add table
Reference in a new issue