-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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: oguzkaganozt <[email protected]>
- Loading branch information
1 parent
b1ffd10
commit 8c18629
Showing
3 changed files
with
84 additions
and
4 deletions.
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
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 |
---|---|---|
@@ -1,9 +1,39 @@ | ||
# devel | ||
|
||
This role installs development dependencies for Autoware. | ||
This role installs optional development tools for Autoware. | ||
|
||
## Tools | ||
- Git LFS | ||
- pre-commit | ||
- clang-format | ||
- Go | ||
|
||
## Inputs | ||
|
||
None. | ||
| Name | Required | Description | | ||
| -------------------- | -------- | -------------------------------- | | ||
| clang-version | true | The version of clang-format to install. | ||
|
||
## Manual Installation | ||
```bash | ||
#!/bin/bash | ||
|
||
# Update package lists | ||
sudo apt-get update | ||
|
||
# Install Git LFS | ||
sudo apt-get install -y git-lfs | ||
|
||
# Setup Git LFS | ||
git lfs install | ||
|
||
# Install pre-commit using pip3 | ||
pip3 install pre-commit | ||
|
||
# Install a specific version of clang-format using pip3 | ||
# Replace X.Y with the actual version you want to install | ||
pip3 install clang-format==${clang_version} | ||
|
||
# Install Go | ||
sudo apt-get install -y golang | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,26 @@ | ||
# Kisak Mesa Fix for Ubuntu 22.04 for Rviz2 | ||
# Kisak Mesa Fix for Ubuntu 22.04 for Rviz2 (Not mandatory) | ||
|
||
<https://github.com/ros2/rviz/issues/948> | ||
If you are using Ubuntu 22.04 and Rviz2 (especially inside a container), you may encounter black-screen error on Rviz2: <https://github.com/ros2/rviz/issues/948> | ||
|
||
This role will install the Kisak Mesa fix for Ubuntu 22.04 for Rviz2. | ||
|
||
## Inputs | ||
None | ||
|
||
## Manual Installation | ||
```bash | ||
#!/bin/bash | ||
|
||
# Update the package list and install software-properties-common | ||
sudo apt-get update | ||
sudo apt-get install -y software-properties-common | ||
|
||
# Add the Kisak Mesa PPA | ||
sudo add-apt-repository -y ppa:kisak/kisak-mesa | ||
|
||
# Update the package list after adding the new repository | ||
sudo apt-get update | ||
|
||
# Install Mesa libraries | ||
sudo apt-get install -y libegl-mesa0 libegl1-mesa-dev libgbm-dev libgbm1 libgl1-mesa-dev libgl1-mesa-dri libglapi-mesa libglx-mesa0 | ||
``` |