Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,28 @@ jobs:
with:
verbose: true

control_loop:
name: check custom control loop
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Checkout DotBot-libs repo
uses: actions/checkout@v4
with:
repository: DotBots/DotBot-libs
path: DotBot-libs
- name: Build control loop library
run: |
cmake -DDOTBOT_LIBS_DIR=${PWD}/DotBot-libs -S utils/control_loop -B build
cmake --build build

doc:
name: check documentation
runs-on: ubuntu-latest
Expand Down Expand Up @@ -92,7 +114,7 @@ jobs:
path: ./dotbot/frontend/build

package:
needs: [test, doc, frontend]
needs: [test, doc, frontend, control_loop]
name: build source package
runs-on: ${{ matrix.os }}
strategy:
Expand Down
3 changes: 3 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
("py:class", r"Query"),
("py:class", r"PydanticUndefined"),
("py:class", r"queue.Queue"),
("py:class", r"_ctypes.Structure"),
("py:class", r"pathlib._local.Path"),
("py:class", r"pathlib.Path"),
]

# -- Options for HTML output -------------------------------------------------
Expand Down
Loading
Loading