dockerfile base image change #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |