mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-20 06:27:04 +01:00
quick fixes 4
This commit is contained in:
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@@ -61,15 +61,16 @@ jobs:
|
|||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/checkout@v4"
|
- uses: "actions/checkout@v4"
|
||||||
|
- run: "pipx install poetry"
|
||||||
- uses: "actions/setup-python@v5"
|
- uses: "actions/setup-python@v5"
|
||||||
with:
|
with:
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
cache: "pip"
|
cache: "poetry"
|
||||||
- run: "cd example && pip install $(cat requirements.txt)"
|
- run: "SKIP_BUILD_FRONTEND=true poetry install"
|
||||||
- run: "cd example && python object.py"
|
- run: "PYTHONPATH=yacv_server YACV_STOP_EARLY=true poetry run python example/object.py"
|
||||||
- run: "mv example/export/object.glb example/export/example.glb"
|
- run: "mv export/object.glb export/example.glb"
|
||||||
- uses: "actions/upload-artifact@v4"
|
- uses: "actions/upload-artifact@v4"
|
||||||
with:
|
with:
|
||||||
name: "example"
|
name: "example"
|
||||||
path: "example/export"
|
path: "export"
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
@@ -126,6 +126,7 @@ class Server:
|
|||||||
print('Cannot stop server because it is not running')
|
print('Cannot stop server because it is not running')
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if os.getenv('YACV_STOP_EARLY', '') == '':
|
||||||
# Make sure we can hold the lock for more than 100ms (to avoid exiting too early)
|
# Make sure we can hold the lock for more than 100ms (to avoid exiting too early)
|
||||||
logger.info('Stopping server (waiting for at least one frontend request first, cancel with CTRL+C)...')
|
logger.info('Stopping server (waiting for at least one frontend request first, cancel with CTRL+C)...')
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user