Skip to content

fix: ground_seg is now separate from occupancy_cpp #184

fix: ground_seg is now separate from occupancy_cpp

fix: ground_seg is now separate from occupancy_cpp #184

Workflow file for this run

# Automatically build and test all packages in our workspace
name: Build and Test
on: pull_request
jobs:
build_and_test:
runs-on: quad
steps:
# Checks-out the repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Enter Workspace
run: |
cd $GITHUB_WORKSPACE
echo Workspace directory: $(pwd)
- name: Build Navigator using latest Docker image
run: docker run \
-it \
--rm \
-v $PWD:/navigator \
--net=host \
-e="DISPLAY" \
novautd/navigator:latest \
"colcon build --packages-select cyclonedds --cmake-clean-cache && . install/setup.bash && colcon build --cmake-clean-cache"