Debugging WIP

This commit is contained in:
Allan Jeremy 2022-05-19 18:26:15 +03:00
parent ed192164a9
commit e66c129e65

View file

@ -51,7 +51,7 @@ jobs:
- name: Print benchmark storage location details - name: Print benchmark storage location details
run: pwd && ls 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: | run: |
cd .. cd ..
mkdir gh-pages mkdir gh-pages
@ -73,7 +73,11 @@ jobs:
git status git status
# Switch back to luau directory # 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 #Run `github-action-benchmark` action
- name: Store ${{ matrix.bench.title }} result - name: Store ${{ matrix.bench.title }} result
@ -82,10 +86,10 @@ jobs:
name: ${{ matrix.bench.title }} name: ${{ matrix.bench.title }}
tool: "benchmarkluau" tool: "benchmarkluau"
# This should come from Luau repo # 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 # 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% alert-threshold: 150%
fail-threshold: 200% fail-threshold: 200%
fail-on-alert: true fail-on-alert: true