forked from comfyanonymous/ComfyUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
209 changed files
with
119,136 additions
and
43,756 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@echo off | ||
..\python_embeded\python.exe .\update.py ..\ComfyUI\ --stable | ||
if exist update_new.py ( | ||
move /y update_new.py update.py | ||
echo Running updater again since it got updated. | ||
..\python_embeded\python.exe .\update.py ..\ComfyUI\ --skip_self_update --stable | ||
) | ||
if "%~1"=="" pause |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build --fast | ||
pause |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/web/assets/** linguist-generated | ||
/web/** linguist-vendored |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# This is the GitHub Workflow that drives full-GPU-enabled tests of pull requests to ComfyUI, when the 'Run-CI-Test' label is added | ||
# Results are reported as checkmarks on the commits, as well as onto https://ci.comfy.org/ | ||
name: Pull Request CI Workflow Runs | ||
on: | ||
pull_request_target: | ||
types: [labeled] | ||
|
||
jobs: | ||
pr-test-stable: | ||
if: ${{ github.event.label.name == 'Run-CI-Test' }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos, linux, windows] | ||
python_version: ["3.9", "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, win] | ||
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 }} | ||
use_prior_commit: 'true' | ||
comment: | ||
if: ${{ github.event.label.name == 'Run-CI-Test' }} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: '(Automated Bot Message) CI Tests are running, you can view the results at https://ci.comfy.org/?branch=${{ github.event.pull_request.number }}%2Fmerge' | ||
}) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Close stale issues' | ||
on: | ||
schedule: | ||
# Run daily at 430 am PT | ||
- cron: '30 11 * * *' | ||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
stale-issue-message: "This issue is being marked stale because it has not had any activity for 30 days. Reply below within 7 days if your issue still isn't solved, and it will be left open. Otherwise, the issue will be closed automatically." | ||
days-before-stale: 30 | ||
days-before-close: 7 | ||
stale-issue-label: 'Stale' | ||
only-labels: 'User Support' | ||
exempt-all-assignees: true | ||
exempt-all-milestones: true |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.