-
Notifications
You must be signed in to change notification settings - Fork 16
feat(arcor2_ur): extend ros_worker for collision primitives and basic tests #891
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
base: master
Are you sure you want to change the base?
Changes from all commits
182b712
01ae284
d661806
8cbaa88
f289f45
6c69f60
cee97de
3d08d34
483cf2d
2ec83e3
b13090a
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,5 +1,5 @@ | ||
| shell_source(name="start.sh", source="start.sh") | ||
|
|
||
| docker_image( | ||
| name="arcor2_arserver", repository="arcor2/arcor2_arserver", dependencies=[":start.sh"], image_tags=["1.4.0"] | ||
| name="arcor2_arserver", repository="arcor2/arcor2_arserver", dependencies=[":start.sh"], image_tags=["1.8.0"] | ||
| ) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| docker_image(name="arcor2_execution", repository="arcor2/arcor2_execution", image_tags=["1.7.0"]) | ||
| docker_image(name="arcor2_execution", repository="arcor2/arcor2_execution", image_tags=["1.8.0"]) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| docker_image(name="arcor2_scene", repository="arcor2/arcor2_scene", image_tags=["1.1.0"]) | ||
| docker_image(name="arcor2_scene", repository="arcor2/arcor2_scene", image_tags=["1.8.0"]) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1 @@ | ||
| docker_image( | ||
| name="arcor2_upload_object_types", repository="arcor2/arcor2_upload_object_types", image_tags=["2.0.0"] | ||
| ) | ||
| docker_image(name="arcor2_upload_object_types", repository="arcor2/arcor2_upload_object_types", image_tags=["1.8.0"]) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,13 @@ | ||
| shell_source(name="start.sh", source="start.sh") | ||
| docker_image(name="arcor2_ur", repository="arcor2/arcor2_ur", dependencies=[":start.sh", "build-support:install_ur_dependencies.sh"], image_tags=["1.7.0"]) | ||
|
|
||
| docker_image( | ||
| name="arcor2_ur", | ||
| repository="arcor2/arcor2_ur", | ||
| dependencies=[ | ||
| ":start.sh", | ||
| "build-support:install_ur_dependencies.sh", | ||
| "src/python/arcor2_ur/scripts:ur", | ||
| "src/python/arcor2_ur/scripts:robot_publisher", | ||
| ], | ||
| image_tags=["1.8.0"], | ||
| ) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| docker_image(name="arcor2_ur_ot", repository="arcor2/arcor2_ur_ot", image_tags=["1.7.0"]) | ||
| docker_image(name="arcor2_ur_ot", repository="arcor2/arcor2_ur_ot", image_tags=["1.8.0"]) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 2.0.0 | ||
| 1.8.0 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR currently changes |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| arcor2_python_distribution( | ||
| name="arcor2_calibration", | ||
| description="ARCOR2 Calibration", | ||
| binaries={"arcor2_calibration": "src/python/arcor2_calibration/scripts:calibration"} | ||
| binaries={"arcor2_calibration": "src/python/arcor2_calibration/scripts:calibration"}, | ||
| ) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 2.0.0 | ||
| 1.8.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 1.1.0 | ||
| 1.8.0 |
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.
The UR worker loads mesh collision assets through
arcor2_storage.client, but this service does not setARCOR2_STORAGE_SERVICE_URLeven though storage runs asur-demo-storagein the same compose file. Inside the robot API container, the defaulthttp://0.0.0.0:10000points at the wrong place, and the robot API also needs to share a compose network whereur-demo-storageis resolvable. The robot API should get the storage URL plus working network connectivity, and at least one mesh scenario should be verified through this compose setup.