Update build_humble.yaml #2
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: build-humble | |
on: | |
pull_request: | |
types: [review_requested, ready_for_review] | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-test: | |
runs-on: ${{ matrix.os }} | |
container: | |
image: osrf/ros:humble-desktop | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
fail-fast: false | |
steps: | |
- 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 | |
- name: build and test | |
uses: ros-tooling/[email protected] | |
with: | |
package-name: > | |
as2_platform_dji_psdk | |
target-ros2-distro: humble | |
vcs-repo-file-url: /tmp/dependencies.repos |