Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
5ad9f865
"vscode:/vscode.git/clone" did not exist on "053db15c2f88bd46796704d1ca5beecadb238593"
Commit
5ad9f865
authored
Mar 14, 2023
by
comfyanonymous
Browse files
Do a quick test on the CI to see if ComfyUI actually runs before pushing
the build.
parent
b5f2bc97
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
12 deletions
+13
-12
.github/workflows/windows_release_cu118.yml
.github/workflows/windows_release_cu118.yml
+10
-12
main.py
main.py
+3
-0
No files found.
.github/workflows/windows_release_cu118.yml
View file @
5ad9f865
...
@@ -18,23 +18,18 @@ jobs:
...
@@ -18,23 +18,18 @@ jobs:
with
:
with
:
fetch-depth
:
0
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
-
shell
:
bash
run
:
|
run
:
|
cd ..
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
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
./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 ..
cd ..
...
@@ -53,6 +48,9 @@ jobs:
...
@@ -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
"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
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
ls
-
name
:
Upload binaries to release
-
name
:
Upload binaries to release
...
...
main.py
View file @
5ad9f865
...
@@ -86,6 +86,9 @@ if __name__ == "__main__":
...
@@ -86,6 +86,9 @@ if __name__ == "__main__":
except
:
except
:
pass
pass
if
'--quick-test-for-ci'
in
sys
.
argv
:
exit
(
0
)
call_on_start
=
None
call_on_start
=
None
if
"--windows-standalone-build"
in
sys
.
argv
:
if
"--windows-standalone-build"
in
sys
.
argv
:
def
startup_server
(
address
,
port
):
def
startup_server
(
address
,
port
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment