From e49881cb98413d3bf34700dc328c235d9b082eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez=20Cordero?= Date: Fri, 14 Jun 2024 18:07:33 +0200 Subject: [PATCH] Added Humble CI (#50) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro Hernández Cordero --- .github/workflows/basic-build-ci.yaml | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/basic-build-ci.yaml diff --git a/.github/workflows/basic-build-ci.yaml b/.github/workflows/basic-build-ci.yaml new file mode 100644 index 0000000..f17afdc --- /dev/null +++ b/.github/workflows/basic-build-ci.yaml @@ -0,0 +1,37 @@ +name: Basic Build Workflow + +on: + push: + branches: [humble] + pull_request: + types: [opened, reopened, synchronize] + +jobs: + build-humble: + runs-on: ubuntu-latest + strategy: + fail-fast: false + container: + image: ros:humble-ros-core + steps: + - name: Checkout repo + uses: actions/checkout@v2 + - name: Create Workspace + run: | + mkdir src_tmp + mv `find -maxdepth 1 -not -name . -not -name src_tmp` src_tmp/ + mv src_tmp/ src/ + - name: Install Prerequisites + run: | + bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ + apt-get update && apt-get upgrade -y && apt-get install ros-dev-tools -y && rosdep init && rosdep update; \ + rosdep install --from-paths src --ignore-src -y' + - name: Build Workspace + run: | + bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ + colcon build' + - name: Run Tests + run: | + bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ + colcon test; \ + colcon test-result --verbose'