Skip to content

Commit

Permalink
Add git submodule steps for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mdcoury authored and arcondello committed Dec 19, 2022
1 parent dcdec35 commit cdc7d1a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- setup_remote_docker
- run-cibuildwheel

Expand All @@ -67,6 +69,8 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run-cibuildwheel

build-and-test-osx:
Expand All @@ -86,6 +90,8 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run-cibuildwheel

build-sdist:
Expand All @@ -94,6 +100,8 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run:
name: build sdist
command: |
Expand All @@ -119,6 +127,8 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run-cibuildwheel

deploy-all:
Expand Down Expand Up @@ -149,6 +159,8 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run:
name: install dependencies
command: |
Expand Down Expand Up @@ -178,6 +190,8 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run:
name: install doxygen
command: sudo apt-get install doxygen
Expand Down

0 comments on commit cdc7d1a

Please sign in to comment.