Skip to content
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: compile issue #56

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/build-amd64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Compile-test-amd64

on:
push:
branches: [ "master" ]
paths:
- '.github/workflows/build-amd64.yml'
- 'src/*'

pull_request:
branches: [ "master" ]
paths:
- '.github/workflows/build-amd64.yml'
- 'src/*'

jobs:
Compile-ego-planner-swarm-amd64:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Start to Compile
run: |
docker run -v `pwd`:/root/ego-planner-swarm --rm jasonxxxyyy/robotics:runtime-cuda11.4-ros1-amd64 /bin/bash -c "source /opt/ros/noetic/setup.bash && cd /root/ego-planner-swarm && catkin_make"
2 changes: 1 addition & 1 deletion src/uav_simulator/Utils/multi_map_server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ add_executable(multi_map_visualization src/multi_map_visualization.cc)

## Add cmake target dependencies of the executable/library
## as an example, message headers may need to be generated before nodes
add_dependencies(multi_map_visualization multi_map_server_messages_cpp)
add_dependencies(multi_map_visualization multi_map_server_generate_messages_cpp)

## Specify libraries to link a library or executable target against
target_link_libraries(multi_map_visualization
Expand Down