Skip to content

Commit

Permalink
Debugging WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJeremy committed May 19, 2022
1 parent 022664d commit ae65ef4
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: "Print current working dir"
run: ls && pwd

- name: "Print parent dir"
run: cd .. && ls && pwd

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

Expand All @@ -54,16 +48,20 @@ jobs:
- name: Run benchmark
run: python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt

- run: cd ../../ && mkdir gh-pages && cd gh-pages
- name: Create gh-pages dir in runner root dir
run: |
cd ..
mkdir gh-pages
cd gh-pages
# in gh-pages directory
- name: Switch to & checkout gh-pages repo
- name: Switch to benchmark results repo
uses: actions/checkout@v3
with:
repository: AllanJeremy/luau-benchmark-results
ref: "main"

- name: Checkout gh-pages
- name: Checkout gh-pages (benchmark results) source
run: |
git status
git fetch --no-tags --depth=1 origin main
Expand All @@ -72,7 +70,7 @@ jobs:
git status
# Switch back to luau directory
- run: pwd && ls &&cd .. && pwd && ls
- run: pwd && ls && cd .. && pwd && ls
- run: ls gh-pages
- run: ls luau

Expand Down

0 comments on commit ae65ef4

Please sign in to comment.