Skip to content

update rpi-kernel to latest stable_20250127 (6.6.74) #226

update rpi-kernel to latest stable_20250127 (6.6.74)

update rpi-kernel to latest stable_20250127 (6.6.74) #226

Workflow file for this run

# thinRoot Continious Integration Check Workflow
# yamllint disable rule:truthy
---
name: CI Build
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
# default read-only permission
permissions:
contents: read
jobs:
skip_check:
name: Duplicate Check
runs-on: ubuntu-24.04
outputs:
should_skip: ${{ steps.check.outputs.should_skip }}
steps:
- id: check
uses: fkirc/[email protected]
with:
skip_after_successful_duplicate: 'true'
concurrent_skipping: 'same_content_newer'
linter:
name: Linter Checks
needs: skip_check
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Check shell scripts
uses: ludeeus/[email protected]
with:
ignore_paths: >-
buildroot-patches/0010-lib32-integration/buildroot/support/scripts
env:
SHELLCHECK_OPTS: -e SC3010 -e SC3014 -e SC3057 -e SC3036 -e SC3028 -e SC3020
- name: Check yaml files
uses: frenck/[email protected]
- name: Check markdown files
uses: avto-dev/markdown-lint@v1
with:
ignore: '**/node_modules/** **/codemirror/README.md'
- name: Check Package consistency
run: |
pip install flake8
make check