Skip to content

Commit

Permalink
Debug: reorganize Print parent directory after benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJeremy committed May 19, 2022
1 parent c620192 commit 34ebb57
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Print parent directory
run: cd .. && ls

- name: Build Luau
run: make config=release luau luau-analyze

Expand All @@ -49,7 +46,11 @@ jobs:
run: python -m pip install requests && pwd

- name: Run benchmark
run: python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt
run: |
python bench/bench.py | tee ../${{ matrix.bench.script }}-output.txt
- name: Print parent directory
run: cd .. && ls

- name: Cd 1 level up and create gh-pages dir then cd into it
run: ls && cd .. && mkdir gh-pages && cd gh-pages && pwd && ls
Expand Down

0 comments on commit 34ebb57

Please sign in to comment.