Skip to content

Commit

Permalink
update workflows to --recursive for submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
fraguada committed Feb 3, 2025
1 parent 8ba5256 commit 16812ea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
- name: safe dir
run: git config --system --add safe.directory /__w/rhino3dm/rhino3dm
- name: update submodules
run: git submodule update --init
run: git submodule update --init --recursive
- name: bootstrap
run: python3 script/bootstrap.py -p js
- name: setup js module
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
- name: checkout
uses: actions/[email protected]
- name: update submodules
run: git submodule update --init
run: git submodule update --init --recursive
- name: build python ${{ matrix.python-version }} ${{ matrix.os }}
run: python setup.py bdist_wheel build --debug
- name: artifacts
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
- name: checkout
uses: actions/[email protected]
- name: update submodules
run: git submodule update --init
run: git submodule update --init --recursive
- name: build python sdist
run: python setup.py sdist
- name: check sdist
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
- name: safe directory
run: git config --global --add safe.directory /__w/rhino3dm/rhino3dm
- name: update submodules
run: ls && git submodule update --init
run: ls && git submodule update --init --recursive
- name: bootstrap
run: python3 script/bootstrap.py -p linux
- name: setup
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/workflow_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: checkout
uses: actions/[email protected]
- name: update submodules
run: git submodule update --init
run: git submodule update --init --recursive
- name: build python sdist
run: python setup.py sdist build --debug
- name: check sdist
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: safe directory
run: git config --global --add safe.directory /__w/rhino3dm/rhino3dm
- name: update submodules
run: git submodule update --init
run: git submodule update --init --recursive
- name: install dependencies
run: /opt/python/${{ matrix.python-version }}/bin/python -m pip install --upgrade pip setuptools wheel
- name: build python manylinux
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: checkout
uses: actions/[email protected]
- name: update submodules
run: git submodule update --init
run: git submodule update --init --recursive
- name: build python ${{ matrix.python-version }} ${{ matrix.os }}
run: python setup.py bdist_wheel
- name: code-sign native libraries
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: safe directory
run: git config --global --add safe.directory /__w/rhino3dm/rhino3dm
- name: update submodules
run: ls && git submodule update --init
run: ls && git submodule update --init --recursive
- name: bootstrap dotnet ${{ matrix.target }}
run: python3 script/bootstrap.py -p ${{ matrix.target }}
- name: setup dotnet ${{ matrix.target }}
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
- name: safe directory
run: git config --global --add safe.directory /__w/rhino3dm/rhino3dm
- name: update submodules
run: ls && git submodule update --init
run: ls && git submodule update --init --recursive
- name: setup QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
- name: checkout
uses: actions/[email protected]
- name: update submodules
run: ls && git submodule update --init
run: ls && git submodule update --init --recursive
- name: bootstrap dotnet
run: python script/bootstrap.py -p windows
- name: setup dotnet
Expand Down Expand Up @@ -343,7 +343,7 @@ jobs:
- name: safe dir
run: git config --system --add safe.directory /__w/rhino3dm/rhino3dm
- name: update submodules
run: git submodule update --init
run: git submodule update --init --recursive
- name: bootstrap
run: python3 script/bootstrap.py -p js
- name: setup js module
Expand Down

0 comments on commit 16812ea

Please sign in to comment.