From 9d649a18f0615ad7585fe3788748562b58cfd60a Mon Sep 17 00:00:00 2001 From: doctorpangloss <2229300+doctorpangloss@users.noreply.github.com> Date: Mon, 20 Oct 2025 13:43:55 -0700 Subject: [PATCH] remove broken build process --- .../README_VERY_IMPORTANT.txt | 27 -------- .../run_amd_gpu_disable_smart_memory.bat | 2 - .../run_nvidia_gpu.bat | 2 - .github/workflows/release-stable-all.yml | 61 ------------------ .../windows_release_dependencies_manual.yml | 64 ------------------- 5 files changed, 156 deletions(-) delete mode 100755 .ci/windows_amd_base_files/README_VERY_IMPORTANT.txt delete mode 100755 .ci/windows_amd_base_files/run_amd_gpu_disable_smart_memory.bat delete mode 100755 .ci/windows_nvidia_base_files/run_nvidia_gpu.bat delete mode 100644 .github/workflows/release-stable-all.yml delete mode 100644 .github/workflows/windows_release_dependencies_manual.yml diff --git a/.ci/windows_amd_base_files/README_VERY_IMPORTANT.txt b/.ci/windows_amd_base_files/README_VERY_IMPORTANT.txt deleted file mode 100755 index 96a500be2..000000000 --- a/.ci/windows_amd_base_files/README_VERY_IMPORTANT.txt +++ /dev/null @@ -1,27 +0,0 @@ -As of the time of writing this you need this preview driver for best results: -https://www.amd.com/en/resources/support-articles/release-notes/RN-AMDGPU-WINDOWS-PYTORCH-PREVIEW.html - -HOW TO RUN: - -If you have a AMD gpu: - -run_amd_gpu.bat - -If you have memory issues you can try disabling the smart memory management by running comfyui with: - -run_amd_gpu_disable_smart_memory.bat - -IF YOU GET A RED ERROR IN THE UI MAKE SURE YOU HAVE A MODEL/CHECKPOINT IN: ComfyUI\models\checkpoints - -You can download the stable diffusion XL one from: https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/blob/main/sd_xl_base_1.0_0.9vae.safetensors - - -RECOMMENDED WAY TO UPDATE: -To update the ComfyUI code: update\update_comfyui.bat - - -TO SHARE MODELS BETWEEN COMFYUI AND ANOTHER UI: -In the ComfyUI directory you will find a file: extra_model_paths.yaml.example -Rename this file to: extra_model_paths.yaml and edit it with your favorite text editor. - - diff --git a/.ci/windows_amd_base_files/run_amd_gpu_disable_smart_memory.bat b/.ci/windows_amd_base_files/run_amd_gpu_disable_smart_memory.bat deleted file mode 100755 index cece0aeb2..000000000 --- a/.ci/windows_amd_base_files/run_amd_gpu_disable_smart_memory.bat +++ /dev/null @@ -1,2 +0,0 @@ -.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build --disable-smart-memory -pause diff --git a/.ci/windows_nvidia_base_files/run_nvidia_gpu.bat b/.ci/windows_nvidia_base_files/run_nvidia_gpu.bat deleted file mode 100755 index 274d7c948..000000000 --- a/.ci/windows_nvidia_base_files/run_nvidia_gpu.bat +++ /dev/null @@ -1,2 +0,0 @@ -.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build -pause diff --git a/.github/workflows/release-stable-all.yml b/.github/workflows/release-stable-all.yml deleted file mode 100644 index 5c1024599..000000000 --- a/.github/workflows/release-stable-all.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: "Release Stable All Portable Versions" - -on: - workflow_dispatch: - inputs: - git_tag: - description: 'Git tag' - required: true - type: string - -jobs: - release_nvidia_default: - permissions: - contents: "write" - packages: "write" - pull-requests: "read" - name: "Release NVIDIA Default (cu129)" - uses: ./.github/workflows/stable-release.yml - with: - git_tag: ${{ inputs.git_tag }} - cache_tag: "cu129" - python_minor: "13" - python_patch: "6" - rel_name: "nvidia" - rel_extra_name: "" - test_release: true - secrets: inherit - - release_nvidia_cu128: - permissions: - contents: "write" - packages: "write" - pull-requests: "read" - name: "Release NVIDIA cu128" - uses: ./.github/workflows/stable-release.yml - with: - git_tag: ${{ inputs.git_tag }} - cache_tag: "cu128" - python_minor: "12" - python_patch: "10" - rel_name: "nvidia" - rel_extra_name: "_cu128" - test_release: true - secrets: inherit - - release_amd_rocm: - permissions: - contents: "write" - packages: "write" - pull-requests: "read" - name: "Release AMD ROCm 6.4.4" - uses: ./.github/workflows/stable-release.yml - with: - git_tag: ${{ inputs.git_tag }} - cache_tag: "rocm644" - python_minor: "12" - python_patch: "10" - rel_name: "amd" - rel_extra_name: "" - test_release: false - secrets: inherit diff --git a/.github/workflows/windows_release_dependencies_manual.yml b/.github/workflows/windows_release_dependencies_manual.yml deleted file mode 100644 index 0799feef1..000000000 --- a/.github/workflows/windows_release_dependencies_manual.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: "Windows Release dependencies Manual" - -on: - workflow_dispatch: - inputs: - torch_dependencies: - description: 'torch dependencies' - required: false - type: string - default: "torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu128" - cache_tag: - description: 'Cached dependencies tag' - required: true - type: string - default: "cu128" - - python_minor: - description: 'python minor version' - required: true - type: string - default: "12" - - python_patch: - description: 'python patch version' - required: true - type: string - default: "10" - -jobs: - build_dependencies: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: 3.${{ inputs.python_minor }}.${{ inputs.python_patch }} - - - shell: bash - run: | - echo "@echo off - call update_comfyui.bat nopause - echo - - echo This will try to update pytorch and all python dependencies. - echo - - echo If you just want to update normally, close this and run update_comfyui.bat instead. - echo - - pause - ..\python_embeded\python.exe -s -m pip install --upgrade ${{ inputs.torch_dependencies }} -r ../ComfyUI/requirements.txt pygit2 - pause" > update_comfyui_and_python_dependencies.bat - - grep -v comfyui requirements.txt > requirements_nocomfyui.txt - python -m pip wheel --no-cache-dir ${{ inputs.torch_dependencies }} -r requirements_nocomfyui.txt pygit2 -w ./temp_wheel_dir - python -m pip install --no-cache-dir ./temp_wheel_dir/* - echo installed basic - ls -lah temp_wheel_dir - mv temp_wheel_dir ${{ inputs.cache_tag }}_python_deps - tar cf ${{ inputs.cache_tag }}_python_deps.tar ${{ inputs.cache_tag }}_python_deps - - - uses: actions/cache/save@v4 - with: - path: | - ${{ inputs.cache_tag }}_python_deps.tar - update_comfyui_and_python_dependencies.bat - key: ${{ runner.os }}-build-${{ inputs.cache_tag }}-${{ inputs.python_minor }}