CI / Utils / Set rebel-compiler version #302
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI / Utils / Set rebel-compiler version | |
| on: | |
| workflow_call: | |
| inputs: | |
| version: | |
| description: "Version of rebel-compiler to use in vLLM RBLN CI" | |
| required: true | |
| type: string | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "Version of rebel-compiler to use in vLLM RBLN CI" | |
| required: true | |
| type: string | |
| jobs: | |
| update-compiler-version: | |
| runs-on: rbln-sw-k8s-general | |
| steps: | |
| - name: Write compiler-version info for vLLM RBLN CIs | |
| run: | | |
| echo "COMPILER_VERSION=${{ inputs.version }}" >> ./compiler-version-for-vllm-rbln | |
| cat ./compiler-version-for-vllm-rbln | |
| - name: Upload compiler-version for vLLM RBLN CIs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: compiler-version-for-vllm-rbln | |
| path: ./compiler-version-for-vllm-rbln |