https://github.com/stephane-caron/raspunzel
Command-line tool to run Bazel targets on a Raspberry Pi
https://github.com/stephane-caron/raspunzel
bazel raspberry-pi
Last synced: about 1 year ago
JSON representation
Command-line tool to run Bazel targets on a Raspberry Pi
- Host: GitHub
- URL: https://github.com/stephane-caron/raspunzel
- Owner: upkie
- License: apache-2.0
- Created: 2022-08-18T14:53:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-14T07:37:12.000Z (almost 2 years ago)
- Last Synced: 2024-11-05T19:17:14.834Z (over 1 year ago)
- Topics: bazel, raspberry-pi
- Language: Python
- Homepage:
- Size: 107 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# raspunzel
Command-line tool to run Bazel targets on systems where Bazel is not installed. For instance, we can run cross-compiled Bazel targets on a Raspberry Pi:
```console
pi@raspi:~/my_bazel_dir$ raspunzel run //my/target -- --foo --bar
```
Raspunzel's syntax is the same as Bazel, but it only supports the ``run`` command.
## Installation
### From PyPI
[](https://pypi.org/project/raspunzel/)
```console
$ pip install raspunzel
```
### Standalone script
Raspunzel is easy to ship in your own project as a [standalone script](https://github.com/tasts-robots/raspunzel/tree/main/standalone). Check out how it is done for instance in the [software of Upkie wheeled-biped robots](https://github.com/upkie/upkie).