SimonR99 is working on ROS2 rove build #257
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 rove build | |
run-name: ${{ github.actor }} is working on ROS2 rove build | |
on: [push] | |
jobs: | |
Build_rove: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Build docker compose | |
run: | | |
docker compose build --build-arg USER_UID=$(id -u) --build-arg USER_GID=$(id -g) | |
- name: Build rove | |
run: | | |
docker compose run devcontainer bash -c "colcon build" | |