Skip to content

ci: update workflows and sync-files #3

ci: update workflows and sync-files

ci: update workflows and sync-files #3

name: build-and-test-cuda
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]
push:
jobs:
build-and-test-cuda:
if: ${{ github.ref_name == github.event.repository.default_branch }}
runs-on: [ self-hosted, linux, ARM64 ]
strategy:
fail-fast: false
matrix:
rosdistro:
- humble
container-suffix:
- -cuda
include:
- rosdistro: humble
container: ghcr.io/autowarefoundation/autoware:latest-prebuilt
build-depends-repos: build_depends.repos
steps:
- name: Build and Test
uses: ./.github/actions/build-and-test-action
with:
container: ${{ matrix.container }}
container-suffix: ${{ matrix.container-suffix }}
build-depends-repos: ${{ matrix.build-depends-repos }}
rosdistro: ${{ matrix.rosdistro }}