Skip to content

Build BizyAir

Build BizyAir #305

Workflow file for this run

name: "Build BizyAir"
on:
schedule:
- cron: '0 */8 * * *' # This will run every 8 hours
push:
branches:
- use-cpu
workflow_dispatch:
inputs:
cu:
description: 'cuda version'
required: true
type: string
default: "121"
python_minor:
description: 'python minor version'
required: true
type: string
default: "11"
python_patch:
description: 'python patch version'
required: true
type: string
default: "9"
cpu:
description: 'if it is a cpu build'
required: false
type: boolean
default: true
xformers:
description: 'xformers version'
required: false
type: string
default: ""
force:
description: 'force update the dependencies'
required: false
type: boolean
default: false
concurrency:
group: bizyairui_releases-build-cpu${{ inputs.cpu }}-${{ inputs.python_minor }}-xformers${{ inputs.xformers }}-${{ inputs.python_patch }}-${{ inputs.python_minor }}-${{ inputs.cu }}
cancel-in-progress: true
jobs:
deps:
uses: ./.github/workflows/windows_release_dependencies.yml
secrets: inherit
with:
xformers: ${{ inputs.xformers || '' }}
cu: ${{ inputs.cu || 121 }}
python_minor: ${{ inputs.python_minor || 11 }}
python_patch: ${{ inputs.python_patch || 9 }}
cpu: ${{ inputs.cpu || true }}
force: ${{ inputs.force || false }}
build:
needs: deps
uses: ./.github/workflows/windows_release_package.yml
permissions:
contents: write
packages: write
pull-requests: read
secrets: inherit
with:
cu: ${{ inputs.cu || 121 }}
python_minor: ${{ inputs.python_minor || 11 }}
python_patch: ${{ inputs.python_patch || 9 }}
cpu: ${{ inputs.cpu || true }}