mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Debugging runner directories
This commit is contained in:
parent
0946952d58
commit
5975d556fe
1 changed files with 6 additions and 3 deletions
9
.github/workflows/benchmark.yml
vendored
9
.github/workflows/benchmark.yml
vendored
|
@ -43,13 +43,13 @@ jobs:
|
|||
architecture: "x64"
|
||||
|
||||
- name: Install requests
|
||||
run: python -m pip install requests
|
||||
run: python -m pip install requests && pwd
|
||||
|
||||
- name: Run benchmark
|
||||
run: python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt
|
||||
|
||||
- name: Cd 1 level up and create gh-pages dir then cd into it
|
||||
run: cd .. && mkdir gh-pages && cd gh-pages
|
||||
run: cd .. && mkdir gh-pages && cd gh-pages && pwd && ls
|
||||
|
||||
- name: Switch to & checkout gh-pages repo
|
||||
uses: actions/checkout@v3
|
||||
|
@ -66,7 +66,7 @@ jobs:
|
|||
git status
|
||||
|
||||
- name: Cd back to root before checking out original repo
|
||||
run: cd ..
|
||||
run: cd .. && pwd && ls
|
||||
|
||||
- name: Switch to original luau repo
|
||||
uses: actions/checkout@v3
|
||||
|
@ -79,7 +79,10 @@ jobs:
|
|||
with:
|
||||
name: ${{ matrix.bench.title }}
|
||||
tool: "benchmarkluau"
|
||||
# This should come from Luau repo
|
||||
output-file-path: ${{ matrix.bench.script }}-output.txt
|
||||
|
||||
# This should map to thebenchmark results repo
|
||||
external-data-json-path: ./dev/bench/data.json
|
||||
alert-threshold: 150%
|
||||
fail-threshold: 200%
|
||||
|
|
Loading…
Add table
Reference in a new issue