-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Rebase Mirror Onto] Frontend Manager: avoid redundant gh calls for s…
…tatic versions (#5152) * Frontend Manager: avoid redundant gh calls for static versions * actually, removing old tmpdir isn't needed I tested - downloader code handles this case well already (also rmdir was wrong func anyway, needed shutil.rmtree if it had content) * add code comment
- Loading branch information
Comfy-Org Mirror Autopull Bot
committed
Oct 16, 2024
1 parent
c695c4a
commit 9717150
Showing
7 changed files
with
337 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
|
||
name: "Release Stable Version" | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
git_tag: | ||
description: 'Git tag' | ||
required: true | ||
type: string | ||
cu: | ||
description: 'CUDA version' | ||
required: true | ||
type: string | ||
default: "124" | ||
python_minor: | ||
description: 'Python minor version' | ||
required: true | ||
type: string | ||
default: "11" | ||
python_patch: | ||
description: 'Python patch version' | ||
required: true | ||
type: string | ||
default: "9" | ||
|
||
|
||
jobs: | ||
package_comfy_windows: | ||
permissions: | ||
contents: "write" | ||
packages: "write" | ||
pull-requests: "read" | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.git_tag }} | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
- uses: actions/cache/restore@v4 | ||
id: cache | ||
with: | ||
path: | | ||
cu${{ inputs.cu }}_python_deps.tar | ||
update_comfyui_and_python_dependencies.bat | ||
key: ${{ runner.os }}-build-cu${{ inputs.cu }}-${{ inputs.python_minor }} | ||
- shell: bash | ||
run: | | ||
mv cu${{ inputs.cu }}_python_deps.tar ../ | ||
mv update_comfyui_and_python_dependencies.bat ../ | ||
cd .. | ||
tar xf cu${{ inputs.cu }}_python_deps.tar | ||
pwd | ||
ls | ||
- shell: bash | ||
run: | | ||
cd .. | ||
cp -r ComfyUI ComfyUI_copy | ||
curl https://www.python.org/ftp/python/3.${{ inputs.python_minor }}.${{ inputs.python_patch }}/python-3.${{ inputs.python_minor }}.${{ inputs.python_patch }}-embed-amd64.zip -o python_embeded.zip | ||
unzip python_embeded.zip -d python_embeded | ||
cd python_embeded | ||
echo ${{ env.MINOR_VERSION }} | ||
echo 'import site' >> ./python3${{ inputs.python_minor }}._pth | ||
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | ||
./python.exe get-pip.py | ||
./python.exe -s -m pip install ../cu${{ inputs.cu }}_python_deps/* | ||
sed -i '1i../ComfyUI' ./python3${{ inputs.python_minor }}._pth | ||
cd .. | ||
git clone https://github.com/comfyanonymous/taesd | ||
cp taesd/*.pth ./ComfyUI_copy/models/vae_approx/ | ||
mkdir ComfyUI_windows_portable | ||
mv python_embeded ComfyUI_windows_portable | ||
mv ComfyUI_copy ComfyUI_windows_portable/ComfyUI | ||
cd ComfyUI_windows_portable | ||
mkdir update | ||
cp -r ComfyUI/.ci/update_windows/* ./update/ | ||
cp -r ComfyUI/.ci/windows_base_files/* ./ | ||
cp ../update_comfyui_and_python_dependencies.bat ./update/ | ||
cd .. | ||
"C:\Program Files\7-Zip\7z.exe" a -t7z -m0=lzma2 -mx=8 -mfb=64 -md=32m -ms=on -mf=BCJ2 ComfyUI_windows_portable.7z ComfyUI_windows_portable | ||
mv ComfyUI_windows_portable.7z ComfyUI/ComfyUI_windows_portable_nvidia.7z | ||
cd ComfyUI_windows_portable | ||
python_embeded/python.exe -s ComfyUI/main.py --quick-test-for-ci --cpu | ||
ls | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ComfyUI_windows_portable_nvidia.7z | ||
tag: ${{ inputs.git_tag }} | ||
overwrite: true | ||
prerelease: true | ||
make_latest: false |
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,24 @@ | ||
name: Use Custom Runner Target To Test ComfyUI Windows with Default Workflow | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
runs_on: | ||
description: 'What runners to run this test on' | ||
required: false | ||
default: 'win' | ||
|
||
jobs: | ||
test-action: | ||
runs-on: ${{ inputs.runs_on }} | ||
steps: | ||
- name: Use ComfyUI GitHub Action | ||
uses: comfy-org/comfy-action@monkeytest | ||
with: | ||
os: windows | ||
cuda_version: 12.1 | ||
workflow_filenames: 'default.json' | ||
gcs_bucket_name: 'comfy-ci-results' | ||
google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }} | ||
output_prefix: 'ComfyUI' | ||
timeout: 50 | ||
# api_endpoint: http://localhost:8080/upload-artifact |
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,91 @@ | ||
name: Test ComfyUI Workflows Manual | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
os: | ||
description: 'Operating System' | ||
required: true | ||
default: 'macos' | ||
type: choice | ||
options: | ||
- macos | ||
- linux | ||
- win | ||
runner_label: | ||
description: 'Runner Label' | ||
required: false | ||
default: 'self-hosted' | ||
type: string | ||
python_version: | ||
description: 'Python Version' | ||
required: true | ||
default: '3.9' | ||
type: choice | ||
options: | ||
- '3.8' | ||
- '3.9' | ||
- '3.10' | ||
- '3.11' | ||
- '3.12' | ||
- other | ||
python_version_number: | ||
description: 'Specify your own Python Version Number, e.g. 3.9.12' | ||
required: false | ||
default: '3.9' | ||
type: string | ||
cuda_version: | ||
description: 'CUDA Version, currently only 12.1 is supported' | ||
required: true | ||
default: '12.1' | ||
type: choice | ||
options: | ||
- '12.1' | ||
torch_version: | ||
description: 'Torch Version' | ||
required: true | ||
default: 'stable' | ||
type: choice | ||
options: | ||
- stable | ||
- preview | ||
- other | ||
torch_version_number: | ||
description: 'Torch Version Number' | ||
required: false | ||
default: '2.3.1' | ||
type: string | ||
comfyui_flags: | ||
description: 'ComfyUI Flags' | ||
required: false | ||
default: '--force-fp16' | ||
type: string | ||
workflow_filenames: | ||
description: 'Workflow Filenames' | ||
required: false | ||
default: 'default.json,lora.json' | ||
type: string | ||
workflow_raw_json: | ||
description: 'Workflow Raw JSON (Not yet supported)' | ||
required: false | ||
default: '' | ||
type: string | ||
|
||
|
||
|
||
|
||
|
||
jobs: | ||
test-default-workflow: | ||
runs-on: ${{ inputs.runner_label }} | ||
steps: | ||
- name: Test Default Workflow | ||
uses: comfy-org/comfy-action@main | ||
with: | ||
os: ${{ inputs.os }} | ||
python_version: ${{ (contains(inputs.python_version, "other") && inputs.python_version_number != '' ) && inputs.python_version_number || inputs.python_version}} | ||
cuda_version: ${{ inputs.cuda_version }} | ||
torch_version: ${{ (contains(inputs.torch_version, "other") && inputs.torch_version_number != '' ) && inputs.torch_version_number || inputs.torch_version}} | ||
workflow_filenames: "default.json,lora.json" | ||
workflow_raw_json: ${{ inputs.workflow_raw_json }} | ||
google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }} | ||
timeout: 50 |
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,105 @@ | ||
name: Comfy CI Workflows Run | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- 'app/**' | ||
- 'input/**' | ||
- 'output/**' | ||
- 'model/**' | ||
- 'notebook/**' | ||
- 'script_example/**' | ||
- 'tests/**' | ||
- 'tests-ui/**' | ||
- '.github/**' | ||
- '.ci/**' | ||
- 'web/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test-stable: | ||
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, m2] | ||
flags: "--use-pytorch-cross-attention" | ||
- os: linux | ||
runner_label: [self-hosted, Linux, t4] | ||
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 }} | ||
output_prefix: 'ComfyUI' | ||
timeout: 50 | ||
use_prior_commit: 'true' | ||
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, 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 }} | ||
output_prefix: 'ComfyUI' | ||
timeout: 50 | ||
use_prior_commit: 'true' | ||
test-unix-nightly: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos, linux] | ||
python_version: ["3.11"] | ||
cuda_version: ["12.1"] | ||
torch_version: ["nightly"] | ||
include: | ||
- os: macos | ||
runner_label: [self-hosted, macOS, m2] | ||
flags: "--use-pytorch-cross-attention" | ||
- os: linux | ||
runner_label: [self-hosted, Linux, t4] | ||
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 }} | ||
output_prefix: 'ComfyUI' | ||
timeout: 50 | ||
use_prior_commit: 'true' |
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,10 @@ | ||
{ | ||
"workbench.colorCustomizations": { | ||
"inlineChat.background": "#FFFFFF", | ||
"inlineChatInput.background": "#FFFFFF", | ||
"inlineChatInput.focusBorder": "#EFEFEF", | ||
"inlineChat.regionHighlight": "#F0F0F0", | ||
"titleBar.activeBackground": "#0D4A23", | ||
"titleBar.activeForeground": "#F2FCF5" | ||
} | ||
} |