Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Build Package
if: success()
run: |
uv build
uv build --no-build-isolation

- name: Export requirements.txt
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ jobs:
run: |
. /opt/ros/humble/setup.sh && \
uv sync --all-extras --dev --all-packages && \
uv build --all-packages
uv build --all-packages --no-build-isolation
- run: |
. /opt/ros/humble/setup.sh && uv run mkdocs gh-deploy --strict --force
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ This method builds Python packages (wheel files) that can be installed using `uv
git clone --recursive https://github.com/tier4/sync_tooling.git
cd sync_tooling

uv build --all-packages
uv sync --all-packages
uv build --all-packages --no-build-isolation
```

This will generate a `dist` directory with the built packages, and the `dist/*.whl` files can be
Expand Down
2 changes: 1 addition & 1 deletion scripts/cloudflare_pages_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ dpkg --fsys-tarfile libgvc6*.deb | tar -xf - -C graphviz/
graphviz_dir="$(realpath graphviz)"
export PATH="$PATH:$graphviz_dir/usr/bin"
uv sync --all-packages --all-extras
uv build --all-packages
uv build --all-packages --no-build-isolation
uv run mkdocs build --strict
Loading