Skip to content

dmaengine: sdxi: Minor coding style changes (pci.c) #18

dmaengine: sdxi: Minor coding style changes (pci.c)

dmaengine: sdxi: Minor coding style changes (pci.c) #18

Workflow file for this run

name: SDXI driver CI
on:
pull_request:
push:
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
arch: [arm64, m68k, riscv, s390, x86_64]
cc: [clang, gcc]
include:
- kunit: --kunit # Run unit tests by default.
- sparse: fatal # Sparse diagnostics are fatal by default.
- cc: clang
sparse: off # Running sparse with clang is redundant.
- arch: arm64
sparse: warn # vgetrandom lacks prototype
- arch: m68k
sparse: warn
- arch: riscv
sparse: off # "invalid argument to '-march' ... " messages
- arch: s390
sparse: warn
- arch: hexagon # Special case for hexagon.
kunit: --no-kunit # No qemu available.
sparse: warn
cc: clang
exclude:
- arch: m68k
cc: clang
- arch: s390
cc: clang
steps:
- uses: actions/checkout@v4
- name: Create build environment image
run: |
ci-tools/setup buildenv
- name: Check
run: |
ci-tools/sdxi-quick-check ${{ matrix.kunit }} --sparse=${{ matrix.sparse }} buildenv ${{ matrix.arch }} ${{ matrix.cc }}