mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Debugging WIP
This commit is contained in:
parent
022664d116
commit
ae65ef42f6
1 changed files with 8 additions and 10 deletions
18
.github/workflows/benchmark.yml
vendored
18
.github/workflows/benchmark.yml
vendored
|
@ -34,12 +34,6 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: "Print current working dir"
|
|
||||||
run: ls && pwd
|
|
||||||
|
|
||||||
- name: "Print parent dir"
|
|
||||||
run: cd .. && ls && pwd
|
|
||||||
|
|
||||||
- name: Build Luau
|
- name: Build Luau
|
||||||
run: make config=release luau luau-analyze
|
run: make config=release luau luau-analyze
|
||||||
|
|
||||||
|
@ -54,16 +48,20 @@ jobs:
|
||||||
- name: Run benchmark
|
- 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
|
||||||
|
|
||||||
- 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
|
# in gh-pages directory
|
||||||
- name: Switch to & checkout gh-pages repo
|
- name: Switch to benchmark results repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: AllanJeremy/luau-benchmark-results
|
repository: AllanJeremy/luau-benchmark-results
|
||||||
ref: "main"
|
ref: "main"
|
||||||
|
|
||||||
- name: Checkout gh-pages
|
- name: Checkout gh-pages (benchmark results) source
|
||||||
run: |
|
run: |
|
||||||
git status
|
git status
|
||||||
git fetch --no-tags --depth=1 origin main
|
git fetch --no-tags --depth=1 origin main
|
||||||
|
@ -72,7 +70,7 @@ jobs:
|
||||||
git status
|
git status
|
||||||
|
|
||||||
# Switch back to luau directory
|
# Switch back to luau directory
|
||||||
- run: pwd && ls &&cd .. && pwd && ls
|
- run: pwd && ls && cd .. && pwd && ls
|
||||||
- run: ls gh-pages
|
- run: ls gh-pages
|
||||||
- run: ls luau
|
- run: ls luau
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue