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
16
.github/workflows/benchmark.yml
vendored
16
.github/workflows/benchmark.yml
vendored
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue