debug wip: testing running sub-command with retry

This commit is contained in:
Allan Jeremy 2022-08-23 14:42:32 +03:00
parent 2afb09483e
commit d7293a7924

View file

@ -65,16 +65,23 @@ jobs:
- name: Push benchmark results - name: Push benchmark results
if: github.event_name == 'push' if: github.event_name == 'push'
uses: ./.github/workflows/push-results uses: nick-fields/retry@v2.7.0
with: with:
repository: ${{ matrix.benchResultsRepo.name }} max_attempts: 5
branch: ${{ matrix.benchResultsRepo.branch }} retry_on: error
token: ${{ secrets.BENCH_GITHUB_TOKEN }} retry_wait_seconds: 60
path: "./gh-pages" timeout_minutes: 5
bench_name: "${{ matrix.bench.title }} (Windows ${{matrix.arch}})" command:
bench_tool: "benchmarkluau" uses: ./.github/workflows/push-results
bench_output_file_path: "./${{ matrix.bench.script }}-output.txt" with:
bench_external_data_json_path: "./gh-pages/dev/bench/data-${{ matrix.os }}.json" repository: ${{ matrix.benchResultsRepo.name }}
branch: ${{ matrix.benchResultsRepo.branch }}
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
path: "./gh-pages"
bench_name: "${{ matrix.bench.title }} (Windows ${{matrix.arch}})"
bench_tool: "benchmarkluau"
bench_output_file_path: "./${{ matrix.bench.script }}-output.txt"
bench_external_data_json_path: "./gh-pages/dev/bench/data-${{ matrix.os }}.json"
# unix: # unix:
# name: ${{matrix.os}} # name: ${{matrix.os}}