mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-19 14:14:13 +01:00
75 lines
1.9 KiB
YAML
75 lines
1.9 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
pull_request:
|
|
branches:
|
|
- "master"
|
|
|
|
jobs:
|
|
|
|
build-frontend:
|
|
name: "Build frontend"
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4"
|
|
- uses: "actions/setup-node@v4"
|
|
with:
|
|
cache: "yarn"
|
|
- run: "yarn install"
|
|
- run: "yarn build"
|
|
- uses: "actions/upload-artifact@v4"
|
|
with:
|
|
name: "frontend"
|
|
path: "dist"
|
|
retention-days: 5
|
|
|
|
build-backend:
|
|
name: "Build backend"
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4"
|
|
- run: "pipx install poetry"
|
|
- uses: "actions/setup-python@v5"
|
|
with:
|
|
python-version: "3.11"
|
|
cache: "poetry"
|
|
- run: "SKIP_BUILD_FRONTEND=true poetry install"
|
|
- run: "SKIP_BUILD_FRONTEND=true poetry build"
|
|
|
|
build-logo:
|
|
name: "Build logo"
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4"
|
|
- run: "pipx install poetry"
|
|
- uses: "actions/setup-python@v5"
|
|
with:
|
|
python-version: "3.11"
|
|
cache: "poetry"
|
|
- run: "SKIP_BUILD_FRONTEND=true poetry install"
|
|
- run: "poetry run python yacv_server/logo.py"
|
|
- uses: "actions/upload-artifact@v4"
|
|
with:
|
|
name: "logo"
|
|
path: "assets/logo_build"
|
|
retention-days: 5
|
|
|
|
build-example:
|
|
name: "Build example"
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4"
|
|
- run: "pipx install poetry"
|
|
- uses: "actions/setup-python@v5"
|
|
with:
|
|
python-version: "3.11"
|
|
cache: "poetry"
|
|
- run: "SKIP_BUILD_FRONTEND=true poetry install"
|
|
- run: "PYTHONPATH=yacv_server YACV_DISABLE_SERVER=true poetry run python example/object.py"
|
|
- run: "mv export/object.glb export/example.glb"
|
|
- uses: "actions/upload-artifact@v4"
|
|
with:
|
|
name: "example"
|
|
path: "export"
|
|
retention-days: 5 |