|
| 1 | +# Copyright 2025- FlagOS Contributors |
| 2 | +# |
| 3 | +# Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4 | +# of this software and associated documentation files (the "Software"), to deal |
| 5 | +# in the Software without restriction, including without limitation the rights |
| 6 | +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 7 | +# copies of the Software, and to permit persons to whom the Software is |
| 8 | +# furnished to do so, subject to the following conditions: |
| 9 | +# |
| 10 | +# The above copyright notice and this permission notice shall be included in all |
| 11 | +# copies or substantial portions of the Software. |
| 12 | +# |
| 13 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 14 | +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 15 | +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 16 | +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 17 | +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 18 | +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 19 | +# SOFTWARE. |
| 20 | + |
| 21 | +name: CD-Nvidia3.3 |
| 22 | + |
| 23 | +permissions: |
| 24 | + contents: write |
| 25 | + |
| 26 | +on: |
| 27 | + workflow_dispatch: |
| 28 | + inputs: |
| 29 | + WHL_VER: |
| 30 | + description: '0.6.0.dev1 < 0.6.0a1 < 0.6.0b1 < 0.6.0rc1 < 0.6.0 < 0.6.0.post1' |
| 31 | + required: true |
| 32 | + default: '0.6.0' |
| 33 | + PYTHON_VER: |
| 34 | + required: true |
| 35 | + default: '3.12' |
| 36 | + PLATFORM: |
| 37 | + required: true |
| 38 | + default: 'x86_64' |
| 39 | + BRANCH: |
| 40 | + required: true |
| 41 | + default: 'triton_v3.3.x' |
| 42 | + TRITON: |
| 43 | + required: true |
| 44 | + default: '3.3' |
| 45 | + BACKEND: |
| 46 | + required: true |
| 47 | + default: 'nvidia' |
| 48 | + FLAGTREE_PYPI_KEY: |
| 49 | + required: false |
| 50 | + workflow_call: |
| 51 | + inputs: |
| 52 | + WHL_VER: |
| 53 | + type: string |
| 54 | + required: true |
| 55 | + default: '0.6.0' |
| 56 | + PYTHON_VER: |
| 57 | + type: string |
| 58 | + required: true |
| 59 | + default: '3.12' |
| 60 | + PLATFORM: |
| 61 | + type: string |
| 62 | + required: true |
| 63 | + default: 'x86_64' |
| 64 | + BRANCH: |
| 65 | + type: string |
| 66 | + required: true |
| 67 | + default: 'triton_v3.3.x' |
| 68 | + TRITON: |
| 69 | + type: string |
| 70 | + required: true |
| 71 | + default: '3.3' |
| 72 | + BACKEND: |
| 73 | + type: string |
| 74 | + required: true |
| 75 | + default: 'nvidia' |
| 76 | + FLAGTREE_PYPI_KEY: |
| 77 | + type: string |
| 78 | + required: false |
| 79 | + |
| 80 | +jobs: |
| 81 | + call-delivery: |
| 82 | + uses: flagos-ai/flagtree/.github/workflows/nvidia3.3-delivery.yml@main |
| 83 | + with: |
| 84 | + WHL_VER: ${{ inputs.WHL_VER }} |
| 85 | + PYTHON_VER: ${{ inputs.PYTHON_VER }} |
| 86 | + PLATFORM: ${{ inputs.PLATFORM }} |
| 87 | + BRANCH: ${{ inputs.BRANCH }} |
| 88 | + TRITON: ${{ inputs.TRITON }} |
| 89 | + BACKEND: ${{ inputs.BACKEND }} |
| 90 | + FLAGTREE_PYPI_KEY: ${{ inputs.FLAGTREE_PYPI_KEY }} |
| 91 | + secrets: inherit |
0 commit comments