Add push trigger #1
Workflow file for this run
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) DeepSeek tests (long)" | |
| on: | |
| push: | |
| branches: | |
| - pprajapati/deepseek_long_seq_CI | |
| workflow_dispatch: | |
| inputs: | |
| 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 3 */2 * *" # Run at 3:00 AM UTC every other day | |
| 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-deepseek-tests-long: | |
| needs: build-artifact | |
| secrets: inherit | |
| uses: ./.github/workflows/galaxy-deepseek-tests-long-impl.yaml | |
| with: | |
| docker-image: ${{ needs.build-artifact.outputs.dev-docker-image }} | |
| build-artifact-name: ${{ needs.build-artifact.outputs.build-artifact-name }} | |
| wheel-artifact-name: ${{ needs.build-artifact.outputs.wheel-artifact-name }} | |
| topology: topology-6u |