Skip to content

Build and Test (Jazzy) #6

Build and Test (Jazzy)

Build and Test (Jazzy) #6

Workflow file for this run

name: Build and Test (Jazzy)
on:
pull_request:
branches:
- master
paths:
- "jazzy/**"
- ".github/workflows/test-jazzy.yml"
- ".github/actions/test/action.yml"
schedule:
- cron: "0 2 * * 0" # Weekly on Sundays at 02:00
workflow_dispatch:
env:
DOCKER_USERNAME: tiryoh
DOCKER_IMAGENAME: ros2-desktop-vnc
jobs:
build:
strategy:
fail-fast: false
matrix:
arch: [arm64, amd64]
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- uses: ./.github/actions/test
with:
ros-distro: jazzy
arch: ${{ matrix.arch }}