mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Debugging WIP
This commit is contained in:
parent
ed192164a9
commit
e66c129e65
1 changed files with 8 additions and 4 deletions
12
.github/workflows/benchmark.yml
vendored
12
.github/workflows/benchmark.yml
vendored
|
@ -51,7 +51,7 @@ jobs:
|
|||
- name: Print benchmark storage location details
|
||||
run: pwd && ls
|
||||
|
||||
- name: Create gh-pages dir in runner root dir
|
||||
- name: Create gh-pages dir in runner root dir & navigate to it
|
||||
run: |
|
||||
cd ..
|
||||
mkdir gh-pages
|
||||
|
@ -73,7 +73,11 @@ jobs:
|
|||
git status
|
||||
|
||||
# Switch back to luau directory
|
||||
- run: pwd && ls && cd .. && pwd && ls
|
||||
- name: Switch to root directory
|
||||
run: |
|
||||
cd ../
|
||||
pwd
|
||||
ls
|
||||
|
||||
#Run `github-action-benchmark` action
|
||||
- name: Store ${{ matrix.bench.title }} result
|
||||
|
@ -82,10 +86,10 @@ jobs:
|
|||
name: ${{ matrix.bench.title }}
|
||||
tool: "benchmarkluau"
|
||||
# This should come from Luau repo
|
||||
output-file-path: ../${{ matrix.bench.script }}-output.txt
|
||||
output-file-path: ./luau/${{ matrix.bench.script }}-output.txt
|
||||
|
||||
# This should map to thebenchmark results repo
|
||||
external-data-json-path: ../gh-pages/dev/bench/data.json
|
||||
external-data-json-path: ./gh-pages/dev/bench/data.json
|
||||
alert-threshold: 150%
|
||||
fail-threshold: 200%
|
||||
fail-on-alert: true
|
||||
|
|
Loading…
Add table
Reference in a new issue