mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
debug wip
This commit is contained in:
parent
372921b97d
commit
2afb09483e
2 changed files with 2 additions and 4 deletions
2
.github/workflows/benchmark-dev.yml
vendored
2
.github/workflows/benchmark-dev.yml
vendored
|
@ -69,7 +69,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
repository: ${{ matrix.benchResultsRepo.name }}
|
repository: ${{ matrix.benchResultsRepo.name }}
|
||||||
branch: ${{ matrix.benchResultsRepo.branch }}
|
branch: ${{ matrix.benchResultsRepo.branch }}
|
||||||
# token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
path: "./gh-pages"
|
path: "./gh-pages"
|
||||||
bench_name: "${{ matrix.bench.title }} (Windows ${{matrix.arch}})"
|
bench_name: "${{ matrix.bench.title }} (Windows ${{matrix.arch}})"
|
||||||
bench_tool: "benchmarkluau"
|
bench_tool: "benchmarkluau"
|
||||||
|
|
4
.github/workflows/push-results/action.yml
vendored
4
.github/workflows/push-results/action.yml
vendored
|
@ -5,7 +5,6 @@ inputs:
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
description: The benchmark results repository to check out
|
description: The benchmark results repository to check out
|
||||||
|
|
||||||
branch:
|
branch:
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
@ -33,14 +32,13 @@ inputs:
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
# shell: bash
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: ${{ inputs.repository }}
|
repository: ${{ inputs.repository }}
|
||||||
ref: ${{ inputs.branch }}
|
ref: ${{ inputs.branch }}
|
||||||
# token: ${{ inputs.token }}
|
token: ${{ inputs.token }}
|
||||||
path: "./gh-pages"
|
path: "./gh-pages"
|
||||||
|
|
||||||
- name: Store results
|
- name: Store results
|
||||||
|
|
Loading…
Add table
Reference in a new issue