mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-07-07 23:21:04 +08:00
113 lines
3.8 KiB
YAML
113 lines
3.8 KiB
YAML
# This is the GitHub Workflow that drives automatic full-GPU-enabled tests of all new commits to the master branch of ComfyUI
|
|
# Results are reported as checkmarks on the commits, as well as onto https://ci.comfy.org/
|
|
name: Full Comfy CI Workflow Runs
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release/**
|
|
paths-ignore:
|
|
- 'app/**'
|
|
- 'input/**'
|
|
- 'output/**'
|
|
- 'notebooks/**'
|
|
- 'script_examples/**'
|
|
- '.github/**'
|
|
- 'web/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-stable:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# os: [macos, linux, windows]
|
|
# os: [macos, linux]
|
|
os: [linux]
|
|
python_version: ["3.10", "3.11", "3.12"]
|
|
cuda_version: ["12.1"]
|
|
torch_version: ["stable"]
|
|
include:
|
|
# - os: macos
|
|
# runner_label: [self-hosted, macOS]
|
|
# flags: "--use-pytorch-cross-attention"
|
|
- os: linux
|
|
runner_label: [self-hosted, Linux]
|
|
flags: ""
|
|
# - os: windows
|
|
# runner_label: [self-hosted, Windows]
|
|
# flags: ""
|
|
runs-on: ${{ matrix.runner_label }}
|
|
steps:
|
|
- name: Test Workflows
|
|
uses: comfy-org/comfy-action@main
|
|
with:
|
|
os: ${{ matrix.os }}
|
|
python_version: ${{ matrix.python_version }}
|
|
torch_version: ${{ matrix.torch_version }}
|
|
google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }}
|
|
comfyui_flags: ${{ matrix.flags }}
|
|
|
|
# test-win-nightly:
|
|
# strategy:
|
|
# fail-fast: true
|
|
# matrix:
|
|
# os: [windows]
|
|
# python_version: ["3.9", "3.10", "3.11", "3.12"]
|
|
# cuda_version: ["12.1"]
|
|
# torch_version: ["nightly"]
|
|
# include:
|
|
# - os: windows
|
|
# runner_label: [self-hosted, Windows]
|
|
# flags: ""
|
|
# runs-on: ${{ matrix.runner_label }}
|
|
# steps:
|
|
# - name: Test Workflows
|
|
# uses: comfy-org/comfy-action@main
|
|
# with:
|
|
# os: ${{ matrix.os }}
|
|
# python_version: ${{ matrix.python_version }}
|
|
# torch_version: ${{ matrix.torch_version }}
|
|
# google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }}
|
|
# comfyui_flags: ${{ matrix.flags }}
|
|
|
|
test-unix-nightly:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# os: [macos, linux]
|
|
os: [linux]
|
|
python_version: ["3.11"]
|
|
cuda_version: ["12.1"]
|
|
torch_version: ["nightly"]
|
|
include:
|
|
# - os: macos
|
|
# runner_label: [self-hosted, macOS]
|
|
# flags: "--use-pytorch-cross-attention"
|
|
- os: linux
|
|
runner_label: [self-hosted, Linux]
|
|
flags: ""
|
|
runs-on: ${{ matrix.runner_label }}
|
|
steps:
|
|
- name: Test Workflows
|
|
uses: comfy-org/comfy-action@main
|
|
with:
|
|
os: ${{ matrix.os }}
|
|
python_version: ${{ matrix.python_version }}
|
|
torch_version: ${{ matrix.torch_version }}
|
|
google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }}
|
|
comfyui_flags: ${{ matrix.flags }}
|
|
|
|
notify-failure:
|
|
needs: [test-stable, test-unix-nightly]
|
|
if: ${{ failure() && github.event_name == 'push' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Notify Slack of CI failure
|
|
uses: slackapi/slack-github-action@v2.1.0
|
|
with:
|
|
webhook: ${{ secrets.CI_ALERTS_SLACK_WEBHOOK }}
|
|
webhook-type: incoming-webhook
|
|
payload: |
|
|
text: ":rotating_siren: ComfyUI CI failed on `${{ github.ref_name }}`\n*Commit:* <${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|${{ github.sha }}>\n*Run:* <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|view logs>\n*Dashboard:* <https://ci.comfy.org/?branch=${{ github.ref_name }}|ci.comfy.org>"
|