Do a quick test on the CI to see if ComfyUI actually runs before pushing
the build.
This commit is contained in:
parent
b5f2bc9711
commit
5ad9f86514
|
@ -18,23 +18,18 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- run: |
|
||||
cd ..
|
||||
cp -r ComfyUI ComfyUI_copy
|
||||
|
||||
Invoke-WebRequest -URI https://www.python.org/ftp/python/3.10.9/python-3.10.9-embed-amd64.zip -O python_embeded.zip
|
||||
Expand-Archive python_embeded.zip
|
||||
cd python_embeded
|
||||
Add-Content -Path .\python310._pth -Value 'import site'
|
||||
Invoke-WebRequest -Uri https://bootstrap.pypa.io/get-pip.py -OutFile get-pip.py
|
||||
.\python.exe get-pip.py
|
||||
"../ComfyUI`n" + (Get-Content .\python310._pth -Raw) | Set-Content .\python310._pth
|
||||
|
||||
- shell: bash
|
||||
run: |
|
||||
cd ..
|
||||
cp -r ComfyUI ComfyUI_copy
|
||||
wget https://www.python.org/ftp/python/3.10.9/python-3.10.9-embed-amd64.zip -O python_embeded.zip
|
||||
unzip python_embeded.zip
|
||||
cd python_embeded
|
||||
echo 'import site' >> ./python310._pth
|
||||
wget https://bootstrap.pypa.io/get-pip.py -O get-pip.py
|
||||
./python.exe get-pip.py
|
||||
./python.exe -s -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu118 xformers -r ../ComfyUI/requirements.txt pygit2
|
||||
sed -i '1i../ComfyUI' ./python310._pth
|
||||
cd ..
|
||||
|
||||
|
||||
|
@ -53,6 +48,9 @@ jobs:
|
|||
"C:\Program Files\7-Zip\7z.exe" a -t7z -m0=lzma -mx=8 -mfb=64 -md=32m -ms=on ComfyUI_windows_portable.7z ComfyUI_windows_portable
|
||||
mv ComfyUI_windows_portable.7z ComfyUI/ComfyUI_windows_portable_nvidia_cu118_or_cpu.7z
|
||||
|
||||
cd ComfyUI_windows_portable
|
||||
python_embeded/python.exe -s ComfyUI/main.py --quick-test-for-ci --cpu
|
||||
|
||||
ls
|
||||
|
||||
- name: Upload binaries to release
|
||||
|
|
Loading…
Reference in New Issue