-
Notifications
You must be signed in to change notification settings - Fork 342
Fix docker nightly build #2643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix docker nightly build #2643
Changes from 5 commits
4e308d1
15088de
eea8570
d0fa1cd
d5bf100
fec291b
5bb243c
52e4445
d83556e
1e471e6
1b1dc3c
433b6e0
309f366
a080733
91acee9
3babb7c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.git | ||
.github | ||
.vscode | ||
build | ||
build_* |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,8 @@ use the Gazebo code found in the current source tree. | |
|
||
1. [Install Docker](#Install-Docker) | ||
|
||
You need at least 10GB or free space on a hard drive. | ||
|
||
1. *Optional:* [Install NVidia Docker](#Install-Nvidia-Docker) | ||
|
||
Nvidia docker will be needed if you plan to run the GUI and/or sensors | ||
|
@@ -46,13 +48,13 @@ use the Gazebo code found in the current source tree. | |
3. Run the docker image with a bash shell. | ||
|
||
``` | ||
docker run -it gz-sim:nightly /bin/bash | ||
docker run --rm -it gz-sim:nightly /bin/bash | ||
``` | ||
|
||
4. Alternatively, you can directly run Gazebo using | ||
|
||
``` | ||
./docker/run.bash gz-sim:nightly gz-sim-server -v 4 | ||
./docker/run.bash gz-sim:nightly gz sim -v 4 | ||
``` | ||
|
||
## Gazebo Using Debians In Docker | ||
|
@@ -73,21 +75,21 @@ distribution using debians. | |
image of Gazebo Garden: | ||
|
||
``` | ||
./build.bash gz-garden ./Dockerfile.gz | ||
./build.bash gz-ionic ./Dockerfile.gz | ||
|
||
``` | ||
|
||
2. Run the docker image using `run.bash`, and pass in the name of the docker | ||
image (first argument to the build.bash script). | ||
|
||
``` | ||
./run.bash gz-garden | ||
./run.bash gz | ||
``` | ||
|
||
3. You can pass arguments to Gazebo by appending them the | ||
`run.bash` command. For example, to load the shapes.sdf file: | ||
|
||
``` | ||
./run.bash gz-garden -f shapes.sdf | ||
./run.bash gz -f shapes.sdf | ||
``` | ||
|
||
## Appendix | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -17,16 +17,17 @@ sudo apt-get install --no-install-recommends -y \ | |||
cppcheck \ | ||||
curl \ | ||||
git \ | ||||
g++-8 \ | ||||
pkg-config \ | ||||
g++ \ | ||||
lcov \ | ||||
pkg-config | ||||
|
||||
sudo apt-get install --no-install-recommends -y \ | ||||
clang-tidy-6.0 \ | ||||
python-yaml \ | ||||
libclang-6.0-dev | ||||
clang-tidy \ | ||||
python3-yaml | ||||
|
||||
sudo apt-get install --no-install-recommends -y \ | ||||
libbenchmark-dev \ | ||||
libbenchmark1 | ||||
libbenchmark1.8.3 | ||||
|
if (GzBenchmark_FOUND) |
So I think we should keep it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted, commend added
Uh oh!
There was an error while loading. Please reload this page.