Skip to content

Commit

Permalink
Update build_humble.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
RPS98 authored Apr 24, 2024
1 parent 3720342 commit bb1589d
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/build_humble.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,32 @@ on:
push:
branches:
- main
workflow_dispatch:
inputs:
distinct_id:
target_branch:

jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
fail-fast: false
runs-on: ubuntu-latest
container:
image: osrf/ros:humble-desktop
steps:
- name: echo distinct ID ${{ github.event.inputs.distinct_id }}
run: |
echo ${{ github.event.inputs.distinct_id }}
echo target_branch : ${{ github.event.inputs.target_branch }}
- name: Install deps
run: sudo apt-get update && sudo apt-get install -y lcov python3-vcstool python3-colcon-lcov-result python3-colcon-coveragepy-result python3-rosdep python3-pip python3-colcon-common-extensions python3-empy
- name: Setup ros
uses: ros-tooling/[email protected]
with:
required-ros-distributions: humble
- name: Checkout Aerostack2
run : |
echo 'repositories:\n aerostack2:\n type: git\n url: https://github.com/aerostack2/aerostack2.git\n version: main' >> /tmp/dependencies.repos
export TARGET_BRANCH=${{ github.event.inputs.target_branch }}
if [ -z "$TARGET_BRANCH" ]; then export TARGET_BRANCH=main; echo "No target branch provided, using $TARGET_BRANCH"; fi
echo "repositories:\n aerostack2:\n type: git\n url: https://github.com/aerostack2/aerostack2.git\n version: $TARGET_BRANCH " >> /tmp/dependencies.repos
- name: build and test
uses: ros-tooling/[email protected]
with:
Expand Down

0 comments on commit bb1589d

Please sign in to comment.