2024-08-15 01:01:06 +00:00
|
|
|
name: Test server launches without errors
|
2024-06-24 18:47:28 +00:00
|
|
|
|
|
|
|
on:
|
2024-06-26 13:09:21 +00:00
|
|
|
push:
|
|
|
|
branches: [ main, master ]
|
2024-06-24 18:47:28 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [ main, master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout ComfyUI
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
repository: "comfyanonymous/ComfyUI"
|
|
|
|
path: "ComfyUI"
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
2024-08-06 05:27:28 +00:00
|
|
|
python-version: '3.8'
|
2024-06-24 18:47:28 +00:00
|
|
|
- name: Install requirements
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
|
|
|
|
pip install -r requirements.txt
|
|
|
|
pip install wait-for-it
|
|
|
|
working-directory: ComfyUI
|
|
|
|
- name: Start ComfyUI server
|
|
|
|
run: |
|
2024-07-09 21:12:57 +00:00
|
|
|
python main.py --cpu 2>&1 | tee console_output.log &
|
2024-06-24 18:47:28 +00:00
|
|
|
wait-for-it --service 127.0.0.1:8188 -t 600
|
|
|
|
working-directory: ComfyUI
|
2024-07-09 21:12:57 +00:00
|
|
|
- name: Check for unhandled exceptions in server log
|
|
|
|
run: |
|
|
|
|
if grep -qE "Exception|Error" console_output.log; then
|
|
|
|
echo "Unhandled exception/error found in server log."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
working-directory: ComfyUI
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
name: console-output
|
|
|
|
path: ComfyUI/console_output.log
|
|
|
|
retention-days: 30
|