|
9 | 9 | type: string |
10 | 10 | rebel_compiler_version: |
11 | 11 | description: "Version of rebel-compiler to use (optional)" |
12 | | - required: true |
| 12 | + required: false |
13 | 13 | type: string |
14 | 14 | optimum_rbln_version: |
15 | 15 | description: "Version of optimum-rbln to use (optional)" |
16 | | - required: true |
| 16 | + required: false |
17 | 17 | type: string |
18 | 18 | workflow_call: |
19 | 19 | inputs: |
|
35 | 35 |
|
36 | 36 | jobs: |
37 | 37 | get-compiler-version: |
38 | | - if: ${{ !inputs.rebel_compiler_version }} |
| 38 | + if: ${{ !inputs.rebel_compiler_version || inputs.rebel_compiler_version == '' }} |
39 | 39 | uses: ./.github/workflows/rbln_utils_get_compiler_version_ci.yaml |
40 | 40 | secrets: inherit |
41 | 41 |
|
|
54 | 54 | VLLM_LOGGING_LEVEL: DEBUG |
55 | 55 | steps: |
56 | 56 | - name: Get latest rebel_compiler version |
57 | | - if: ${{ !inputs.rebel_compiler_version }} |
| 57 | + if: ${{ !inputs.rebel_compiler_version || inputs.rebel_compiler_version == '' }} |
58 | 58 | id: get_latest_rebel_compiler |
59 | 59 | run: | |
60 | 60 | echo "COMPILER_VER=${{ needs.get-compiler-version.outputs.compiler_version }}" >> $GITHUB_OUTPUT |
@@ -147,7 +147,7 @@ jobs: |
147 | 147 | VLLM_LOGGING_LEVEL: DEBUG |
148 | 148 | steps: |
149 | 149 | - name: Get latest rebel_compiler version |
150 | | - if: ${{ !inputs.rebel_compiler_version }} |
| 150 | + if: ${{ !inputs.rebel_compiler_version || inputs.rebel_compiler_version == '' }} |
151 | 151 | id: get_latest_rebel_compiler |
152 | 152 | run: | |
153 | 153 | echo "COMPILER_VER=${{ needs.get-compiler-version.outputs.compiler_version }}" >> $GITHUB_OUTPUT |
@@ -284,7 +284,7 @@ jobs: |
284 | 284 | VLLM_LOGGING_LEVEL: DEBUG |
285 | 285 | steps: |
286 | 286 | - name: Get latest rebel_compiler version |
287 | | - if: ${{ !inputs.rebel_compiler_version }} |
| 287 | + if: ${{ !inputs.rebel_compiler_version || inputs.rebel_compiler_version == '' }} |
288 | 288 | id: get_latest_rebel_compiler |
289 | 289 | run: | |
290 | 290 | echo "COMPILER_VER=${{ needs.get-compiler-version.outputs.compiler_version }}" >> $GITHUB_OUTPUT |
|
0 commit comments