Skip to content

Build and Test (Iron) #77

Build and Test (Iron)

Build and Test (Iron) #77

Workflow file for this run

name: Build and Test (Iron)
on:
pull_request:
branches:
- master
paths:
- "iron/**"
- ".github/workflows/test-iron.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: iron
arch: ${{ matrix.arch }}