mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Debug WIP
This commit is contained in:
parent
5cee93d78b
commit
19ac40d92d
1 changed files with 4 additions and 6 deletions
10
.github/workflows/benchmark-cachegrind.yml
vendored
10
.github/workflows/benchmark-cachegrind.yml
vendored
|
@ -17,10 +17,7 @@ jobs:
|
|||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
engine:
|
||||
- { channel: stable, version: latest, runner: "robloxdev-cli" }
|
||||
# - { channel: develop, version: latest, runner: 'robloxdev-cli' }
|
||||
# covers environment closest to RobloxStudio, but not available on Linux
|
||||
# - { channel: develop, version: latest, runner: 'roblox-cli'}
|
||||
- { channel: stable, version: latest }
|
||||
bench:
|
||||
- {
|
||||
script: "run-benchmarks",
|
||||
|
@ -48,12 +45,13 @@ jobs:
|
|||
- name: Run benchmark
|
||||
run: |
|
||||
python bench/bench.py | tee ../${{ matrix.bench.script }}-output.txt
|
||||
ls
|
||||
|
||||
- name: Run ${{ matrix.bench.title }} (Cold Cachegrind)
|
||||
run: sudo ./scripts/run-with-cachegrind.sh ./${{ matrix.engine.runner }} python bench/bench.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 | tee -a ${{ matrix.bench.script }}-output.txt
|
||||
run: sudo ./scripts/run-with-cachegrind.sh python bench/bench.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 | tee -a ${{ matrix.bench.script }}-output.txt
|
||||
|
||||
- name: Run ${{ matrix.bench.title }} (Warm Cachegrind)
|
||||
run: sudo ./scripts/run-with-cachegrind.sh ./${{ matrix.engine.runner }} python bench/bench.py "${{ matrix.bench.cachegrindTitle }}" ${{ matrix.bench.cachegrindIterCount }} | tee -a ${{ matrix.bench.script }}-output.txt
|
||||
run: sudo ./scripts/run-with-cachegrind.sh python bench/bench.py "${{ matrix.bench.cachegrindTitle }}" ${{ matrix.bench.cachegrindIterCount }} | tee -a ${{ matrix.bench.script }}-output.txt
|
||||
|
||||
- name: Navigate to root dir, create gh-pages dir then navigate into it
|
||||
run: cd .. && mkdir gh-pages && cd gh-pages
|
||||
|
|
Loading…
Add table
Reference in a new issue