chore(deps): Bump ubuntu from focal-20240918 to focal-20241011 in /noetic #28
Workflow file for this run
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 and Test (Noetic) | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "noetic/**" | |
- ".github/workflows/test-noetic.yml" | |
schedule: | |
- cron: "0 2 * * 0" # Weekly on Sundays at 02:00 | |
workflow_dispatch: | |
env: | |
DOCKER_USERNAME: tiryoh | |
DOCKER_IMAGENAME: ros-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: Tiryoh/docker-ros2-desktop-vnc/.github/actions/test@master | |
with: | |
ros-distro: noetic | |
arch: ${{ matrix.arch }} |