Skip to content

Commit

Permalink
Debugging runner directories
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJeremy committed May 19, 2022
1 parent 0946952 commit 5975d55
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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%
Expand Down

0 comments on commit 5975d55

Please sign in to comment.