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 028127c commit 9f331f5Copy full SHA for 9f331f5
.github/workflows/test-examples.yml
@@ -2,6 +2,15 @@ name: Reusable workflow to test everything in chipflow-examples works
2
3
on:
4
workflow_call:
5
+ inputs:
6
+ CHIPFLOW_BACKEND_VERSION:
7
+ required: false
8
+ type: string
9
+ default: 'branch-main'
10
+ CHIPFLOW_API_ORIGIN:
11
12
13
+ default: 'https://build.chipflow.org'
14
secrets:
15
CHIPFLOW_API_KEY:
16
required: true
@@ -66,3 +75,6 @@ jobs:
66
75
pdm run chipflow silicon submit --wait $DRY
67
76
env:
68
77
CHIPFLOW_API_KEY: ${{ secrets.CHIPFLOW_API_KEY}}
78
+ CHIPFLOW_API_ORIGIN: ${{ inputs.CHIPFLOW_API_ORIGIN }}
79
+ CHIPFLOW_BACKEND_VERSION: ${{ inputs.CHIPFLOW_BACKEND_VERSION }}
80
+
0 commit comments