Fix deepseek test_moe device_params ordering for cache paths (#37926) #4704
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: "(Galaxy) Quick" | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| arch: | |
| required: true | |
| type: choice | |
| options: | |
| - wormhole_b0 | |
| - blackhole | |
| default: wormhole_b0 | |
| platform: | |
| required: false | |
| type: choice | |
| default: "Ubuntu 22.04" | |
| options: | |
| - "Ubuntu 22.04" | |
| - "Ubuntu 24.04" | |
| description: "Platform to build and test" | |
| build-type: | |
| required: false | |
| type: choice | |
| default: Release | |
| options: | |
| - Release | |
| - Debug | |
| - RelWithDebInfo | |
| - ASan | |
| - TSan | |
| description: "Build type configuration" | |
| enable-lto: | |
| required: false | |
| type: boolean | |
| default: false | |
| description: "Enable Link Time Optimization (LTO)" | |
| schedule: | |
| - cron: "0 */4 * * *" # Runs BH every 4 hours | |
| push: | |
| branches: ["main"] | |
| permissions: | |
| packages: write | |
| contents: write | |
| jobs: | |
| build-artifact: | |
| uses: ./.github/workflows/build-artifact.yaml | |
| permissions: | |
| packages: write | |
| secrets: inherit | |
| with: | |
| build-type: ${{ inputs.build-type || 'Release' }} | |
| build-wheel: true | |
| platform: ${{ inputs.platform || 'Ubuntu 22.04' }} | |
| enable-lto: ${{ inputs.enable-lto || false }} | |
| galaxy-quick-test: | |
| needs: build-artifact | |
| secrets: inherit | |
| uses: ./.github/workflows/galaxy-quick-impl.yaml | |
| with: | |
| docker-image: ${{ needs.build-artifact.outputs.dev-docker-image }} | |
| wheel-artifact-name: ${{ needs.build-artifact.outputs.wheel-artifact-name }} | |
| build-artifact-name: ${{ needs.build-artifact.outputs.build-artifact-name }} | |
| blackhole: ${{ github.event.inputs.arch == 'blackhole' }} | |
| scheduled: ${{ github.event_name == 'schedule' }} |