Skip to content
Merged
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
7 changes: 0 additions & 7 deletions .flake8

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ jobs:
env:
MSYS2_PATH_TYPE: inherit
UV_PYTHON: ${{ steps.setup-python.outputs.python-path }}
run: uv sync --locked
run: |
uv sync --project third-party/lizardbyte-common --locked --only-group test-c \
--no-python-downloads \
--no-install-project

- name: Configure
run: |
Expand Down Expand Up @@ -274,7 +277,7 @@ jobs:
env:
MSYS2_PATH_TYPE: inherit
run: |
uv run --locked gcovr . -r ../src \
uv run --project ../third-party/lizardbyte-common --locked --no-sync gcovr . -r ../src \
--exclude-noncode-lines \
--exclude-throw-branches \
--exclude-unreachable-branches \
Expand Down
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
path = third-party/googletest
url = https://github.com/google/googletest.git
branch = v1.14.x
[submodule "third-party/lizardbyte-common"]
path = third-party/lizardbyte-common
url = https://github.com/LizardByte/lizardbyte-common.git
branch = master
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,12 @@ ninja -C build

## Python Tooling

Install [uv](https://docs.astral.sh/uv/) to sync and run the Python tools:
Install [uv](https://docs.astral.sh/uv/) and initialize the shared tooling submodule:

```bash
uv sync
uv run python scripts/update_clang_format.py
git submodule update --init --recursive third-party/lizardbyte-common
uv run --project third-party/lizardbyte-common --locked --only-group lint-c \
python third-party/lizardbyte-common/scripts/update_clang_format.py
```

## Demo
Expand Down
13 changes: 0 additions & 13 deletions pyproject.toml

This file was deleted.

39 changes: 0 additions & 39 deletions scripts/update_clang_format.py

This file was deleted.

1 change: 1 addition & 0 deletions third-party/lizardbyte-common
Submodule lizardbyte-common added at c04943
178 changes: 0 additions & 178 deletions uv.lock

This file was deleted.

Loading