Skip to content

Commit

Permalink
Update API docs builder to Blender 3.6.16 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
portnov committed Oct 3, 2024
1 parent d439bb2 commit 1053cfb
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/apidocs_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ jobs:
build:
runs-on: ubuntu-latest
env:
blender_version: "2.93"
blender_version: "3.6.16"
python_version: "3.10"

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
- name: Set up Python ${{env.python_version}}
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: ${{env.python_version}}
- name: Cache
uses: actions/cache@v4
with:
Expand All @@ -35,12 +36,12 @@ jobs:
- name: Install Blender
run: |
# echo "starting run"
BLENDER_VERSION=2.93
BLENDER_URL=https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.93/blender-2.93.1-linux-x64.tar.xz
BLENDER_VERSION=${{env.blender_version}}
BLENDER_URL=https://mirrors.de.sahilister.net/blender/release/Blender3.6/blender-3.6.16-linux-x64.tar.xz
SVERCHOK_DIR=scripts/addons/sverchok
BLENDER_TAR=$(basename $BLENDER_URL)
BLENDER_DIR=$(basename $BLENDER_URL .tar.xz)
RELEASE=blender293_LTS
RELEASE=blender3616_LTS
if [ ! -f installation/blender/blender ]
then
Expand All @@ -58,7 +59,7 @@ jobs:
mv $RELEASE blender
pushd blender/
PYTHON=${BLENDER_VERSION}/python/bin/python3.9
PYTHON=${BLENDER_VERSION}/python/bin/python${{env.python_version}}
$PYTHON -m ensurepip
$PYTHON -m pip install --upgrade pip setuptools wheel
$PYTHON -m pip install --upgrade scipy geomdl scikit-image
Expand Down

0 comments on commit 1053cfb

Please sign in to comment.