2020 description : " Tag to apply to images"
2121 required : true
2222 type : string
23- deploy_gmc :
24- default : false
25- description : ' Whether to deploy gmc'
26- required : true
27- type : boolean
23+ # deploy_gmc:
24+ # default: false
25+ # description: 'Whether to deploy gmc'
26+ # required: true
27+ # type: boolean
2828 build :
2929 default : true
3030 description : ' Build test required images for Examples'
4040 description : ' Test examples with helm charts'
4141 required : false
4242 type : boolean
43- test_gmc :
44- default : false
45- description : ' Test examples with gmc'
46- required : false
47- type : boolean
43+ # test_gmc:
44+ # default: false
45+ # description: 'Test examples with gmc'
46+ # required: false
47+ # type: boolean
4848 opea_branch :
4949 default : " main"
5050 description : ' OPEA branch for image build'
5454 default : false
5555 description : " inject commit to docker images true or false"
5656 required : false
57- type : string
57+ type : boolean
58+ use_model_cache :
59+ default : false
60+ description : " use model cache true or false"
61+ required : false
62+ type : boolean
5863
5964permissions : read-all
6065jobs :
7681
7782 build-deploy-gmc :
7883 needs : [get-test-matrix]
79- if : ${{ fromJSON(inputs.deploy_gmc) }}
84+ if : false
85+ # ${{ fromJSON(inputs.deploy_gmc) }}
8086 strategy :
8187 matrix :
8288 node : ${{ fromJson(needs.get-test-matrix.outputs.nodes) }}
8995 secrets : inherit
9096
9197 run-examples :
92- needs : [get-test-matrix, build-deploy-gmc]
98+ needs : [get-test-matrix] # [get-test-matrix , build-deploy-gmc]
9399 if : always()
94100 strategy :
95101 matrix :
@@ -104,7 +110,8 @@ jobs:
104110 build : ${{ fromJSON(inputs.build) }}
105111 test_compose : ${{ fromJSON(inputs.test_compose) }}
106112 test_helmchart : ${{ fromJSON(inputs.test_helmchart) }}
107- test_gmc : ${{ fromJSON(inputs.test_gmc) }}
113+ # test_gmc: ${{ fromJSON(inputs.test_gmc) }}
108114 opea_branch : ${{ inputs.opea_branch }}
109115 inject_commit : ${{ inputs.inject_commit }}
116+ use_model_cache : ${{ inputs.use_model_cache }}
110117 secrets : inherit
0 commit comments