We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5cdc50 commit 577820eCopy full SHA for 577820e
.github/workflows/c-chain-reexecution-benchmark.yml
@@ -20,6 +20,11 @@ on:
20
description: 'The current state directory. Supports S3 directory/zip and local directories.'
21
required: false
22
default: s3://avalanchego-bootstrap-testing/cchain-current-state-hashdb-full-100.zip
23
+ runner:
24
+ description: 'Runner to execute the benchmark. Input to the runs-on field of the job.'
25
+ required: false
26
+ default: ubuntu-latest
27
+
28
schedule:
29
- cron: '0 9 * * *' # Runs every day at 09:00 UTC (04:00 EST)
30
@@ -28,7 +33,7 @@ jobs:
33
permissions:
34
id-token: write
35
contents: write
31
- runs-on: ubuntu-latest
36
+ runs-on: ${{ github.event.inputs.runner || 'ubuntu-latest' }}
32
37
steps:
38
- name: Configure AWS Credentials
39
uses: aws-actions/configure-aws-credentials@v4
0 commit comments