File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 25
25
required : false
26
26
type : string
27
27
default : kernelkit/infix
28
+ ninepm-conf :
29
+ required : false
30
+ type : string
31
+ default : ' '
28
32
29
33
env :
30
34
FLV : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.flavor || inputs.flavor }}
31
35
INFIX_REPO : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.infix_repo || inputs.infix_repo }}
36
+ NINEPM_CONF : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ninepm-conf || inputs.ninepm-conf }}
32
37
33
38
jobs :
34
39
test :
77
82
78
83
- name : Regression Test x86_64${{ steps.vars.outputs.flv }}
79
84
run : |
85
+ if [ -n "$NINEPM_CONF" ]; then
86
+ export NINEPM_PROJ_CONFIG="${GITHUB_WORKSPACE}/$NINEPM_CONF"
87
+ echo "DEBUG: NINEPM_PROJ_CONFIG is '$NINEPM_PROJ_CONFIG'"
88
+ fi
80
89
make test
81
90
82
91
- name : Publish Test Result for x86_64${{ steps.vars.outputs.flv }}
You can’t perform that action at this time.
0 commit comments