Skip to content

Commit

Permalink
[grasp_fusion] Don't install data on build time to prevent build fail…
Browse files Browse the repository at this point in the history
…ure on travis due to googledrive access limit

I tried travis caching of those data, but cache couldn't be expanded before travis timeout:
https://travis-ci.org/github/start-jsk/jsk_apc/jobs/686632934
https://travis-ci.org/github/start-jsk/jsk_apc/jobs/686826882
  • Loading branch information
pazeshun committed May 14, 2020
1 parent 6f7e1d9 commit 40c5cea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions demos/grasp_fusion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ cd examples/grasp_fusion/primitive_matching

### With ROS

#### Setup

```bash
rosrun grasp_fusion install_data.py
```

#### Execution

```bash
roslaunch grasp_fusion sample_instance_segmentation.launch
```
Expand Down
3 changes: 2 additions & 1 deletion demos/grasp_fusion/ros/grasp_fusion/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ find_package(catkin REQUIRED catkin_virtualenv)

catkin_python_setup()

add_custom_target(${PROJECT_NAME}_install_data ALL COMMAND ${PROJECT_SOURCE_DIR}/scripts/install_data.py)
# add_custom_target(${PROJECT_NAME}_install_data ALL COMMAND ${PROJECT_SOURCE_DIR}/scripts/install_data.py)
# Don't install data on build time to prevent build failure on travis due to googledrive access limit

################################################
## Declare ROS messages, services and actions ##
Expand Down

0 comments on commit 40c5cea

Please sign in to comment.