Skip to content

Commit

Permalink
Merge pull request #5107 from nortikin/fix_5106_Sverchock_build_actio…
Browse files Browse the repository at this point in the history
…n_errors

fix #5106 Sverchock build action errors
  • Loading branch information
satabol authored Apr 25, 2024
2 parents 6db84ff + 676fed0 commit 32a9ba1
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/apidocs_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
blender_version: "2.93"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ./installation
key: blender-${{ env.blender_version }}-${{ hashFiles('.github/workflows/apidocs_builder.yml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/building_docs_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
build_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ammaraskar/sphinx-action@master
with:

# sphinx properties
# https://www.sphinx-doc.org/en/master/man/sphinx-build.html
# https://www.sphinx-doc.org/en/master/usage/builders/index.html?highlight=DummyBuilder#sphinx.builders.dummy.DummyBuilder
build-command: sphinx-build -W --keep-going -b dummy . _test
pre-build-command: pip install sphinx-rtd-theme
pre-build-command: pip install sphinx-rtd-theme==1.2.2
8 changes: 4 additions & 4 deletions .github/workflows/test-sverchok.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
blender_version: "2.93"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ./installation
key: blender-${{ env.blender_version }}-${{ hashFiles('.github/workflows/test-sverchok.yml') }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
./installation/blender/blender-softwaregl
- name: Save logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: log_files
Expand Down
5 changes: 5 additions & 0 deletions docs/tutorials/Celling_00/celling_03.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*********************************
Celling 03. Flattening and offset
*********************************

TODO
5 changes: 5 additions & 0 deletions docs/tutorials/Celling_00/celling_04.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
******************************************
Celling 04. Types definition with checking
******************************************

TODO
5 changes: 5 additions & 0 deletions docs/tutorials/Celling_00/celling_05.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
**************************************
Celling 05. "Layouts" on "paper space"
**************************************

TODO
5 changes: 5 additions & 0 deletions docs/tutorials/Celling_00/celling_06.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
***********************************
Celling 06. SVG/DXF/XMLX/IFC export
***********************************

TODO

0 comments on commit 32a9ba1

Please sign in to comment.