This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
Update ci.yml #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 Debian Package | |
on: | |
push: | |
branches: [ "humble" ] | |
pull_request: | |
branches: [ "humble" ] | |
permissions: | |
contents: read | |
jobs: | |
build_debian: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install dependecies | |
run: | | |
sudo apt update && sudo apt install -y python3-bloom python3-rosdep fakeroot debhelper dh-python | |
- name: Initialize rosdep | |
run: | | |
sudo rosdep init | |
rosdep update | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: humble | |
- name: Build debian package | |
run: | | |
bloom-generate rosdebian | |
fakeroot debian/rules binary |