-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yadunund <[email protected]>
- Loading branch information
Showing
3 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,14 @@ jobs: | |
image: ${{ matrix.docker_image }} | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Install deps for Rust | ||
run: | | ||
apt update && apt install -y git curl libclang-dev | ||
- name: Setup Rust for nexus_zenoh_bridge | ||
uses: dtolnay/[email protected] | ||
with: | ||
components: clippy, rustfmt | ||
- name: Install colcon cargo | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,18 @@ For details on architecture and concepts [see](./docs/concepts.md). | |
|
||
## Setup | ||
|
||
### Install system dependencies | ||
While `cargo` and `rustc` can be installed via rosdep, the version that available is | ||
v1.66 on most target platforms. However most dependencies require newer versions of `cargo` and `rustc`. | ||
Hence for now, we will install the latest version manually. | ||
TODO: Consider adding this dep back for J turtle if Ubuntu 24.04 has the newer. | ||
cargo and rustc pkgs. | ||
|
||
```bash | ||
sudo apt update && sudo apt install curl | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | ||
``` | ||
|
||
### Setup the NEXUS workspace | ||
|
||
```bash | ||
|
@@ -21,6 +33,7 @@ cd ~/ws_nexus/src/ | |
git clone [email protected]:OpenSourceRobotics/nexus | ||
vcs import . < nexus/abb.repos | ||
cd ~/ws_nexus | ||
|
||
rosdep install --from-paths src --ignore-src --rosdistro iron -y -r | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters