Skip to content

Commit

Permalink
Add jazzy pipelinnes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wiktor-99 committed Aug 5, 2024
1 parent 599fada commit a6cd7db
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/build_and_test_jazzy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
name: Build and Test (jazzy)

on:
push:
branches: [jazzy]

pull_request:
branches: [jazzy]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container:
image: ubuntu:jammy

steps:
- uses: ros-tooling/[email protected]
with:
use-ros2-testing: true
- uses: ros-tooling/[email protected]
with:
target-ros2-distro: jazzy

ament_lint_general:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-latest
container:
image: rostooling/setup-ros-docker:ubuntu-jammy-ros-jazzy-ros-base-latest
strategy:
fail-fast: false
matrix:
linter: [xmllint, pep257]
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
linter: ${{ matrix.linter }}
distribution: jazzy
package-name: human_detector
ament_flake8:
name: ament_flake8
runs-on: ubuntu-latest
container:
image: rostooling/setup-ros-docker:ubuntu-jammy-ros-jazzy-ros-base-latest
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
linter: flake8
distribution: jazzy
package-name: human_detector
arguments: --config python_linter.flake8

0 comments on commit a6cd7db

Please sign in to comment.