Compile Ubuntu CUDA Portable Distribution #42
This file contains 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: Compile Ubuntu CUDA Portable Distribution | |
on: | |
workflow_dispatch: | |
inputs: | |
release: | |
description: Upload to a tagged release? | |
required: true | |
type: boolean | |
dwpose: | |
description: Build DWPose? | |
required: true | |
type: boolean | |
jobs: | |
compile-ubuntu-cuda: | |
uses: ./.github/workflows/compile.yml | |
with: | |
os: ubuntu-latest | |
api: cuda | |
release: ${{ inputs.release }} | |
dwpose: ${{ inputs.dwpose }} |