Skip to content

dockerfile base image change #44

dockerfile base image change

dockerfile base image change #44

Workflow file for this run

name: Ros2 Build
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build docker container
run: docker buildx build -t local .
# - name: rosdep init and update
# run: docker run local apt update && rosdep init && rosdep update
- name: rosdep install
run: docker run local rosdep install --from-paths src -y --ignore-src --rosdistro humble
- name: colcon build
run: docker run local colcon build