30
Raspberry Pi Linux Kernel 6.12.y / sources (push) Successful in 0s
Raspberry Pi Linux Kernel 6.12.y / build (push) Successful in 0s

This commit is contained in:
Cantibra
2026-05-06 11:05:30 +02:00
parent 990546c2c9
commit 242ae1048a
4 changed files with 30 additions and 28 deletions
+24
View File
@@ -0,0 +1,24 @@
name: Raspberry Pi Linux Kernel [Build]
on:
workflow_call:
inputs:
VERSION:
required: true
type: string
jobs:
job:
name: Raspberry Pi Linux Build
strategy:
matrix:
include:
- kernel: bcm2711_defconfig
runner: cicd.bookworm
- kernel: bcm2712_defconfig
runner: cicd.bookworm
- kernel: bcm2712_pve_defconfig
runner: cicd.bookworm
runs-on: ${{ matrix.runner }}
steps:
- name: Repository [Clone]
run: |
/usr/bin/echo "${{ inputs.version }}"
+1 -10
View File
@@ -8,16 +8,7 @@ on:
jobs: jobs:
job: job:
name: Raspberry Pi Linux Build name: Raspberry Pi Linux Build
strategy: runs-on: cicd.any
matrix:
include:
- kernel: bcm2711_defconfig
runner: cicd.bookworm
- kernel: bcm2712_defconfig
runner: cicd.bookworm
- kernel: bcm2712_pve_defconfig
runner: cicd.bookworm
runs-on: ${{ matrix.runner }}
steps: steps:
- name: Repository [Clone] - name: Repository [Clone]
run: | run: |
+4 -16
View File
@@ -10,21 +10,9 @@ jobs:
uses: ./.gitea/workflows/sources.yml uses: ./.gitea/workflows/sources.yml
with: with:
BRANCH: ${{ env.branch }} BRANCH: ${{ env.branch }}
outputs: build:
VERSION: ${{ jobs.sources.outputs.version }}
echo:
runs-on: cicd.any
needs: needs:
- sources - sources
steps: uses: ./.gitea/workflows/build.yml
- name: Linux Sources [Clone] with:
env: VERSION: ${{ needs.call-a.outputs.version }}
VERSION: ${{ jobs.sources.outputs.version }}
run: |
echo "${VERSION}"
# build:
# needs:
# - sources
# uses: ./.gitea/workflows/build.yml
# with:
# VERSION: ${{ needs.sources.outputs.version }}
+1 -2
View File
@@ -15,11 +15,10 @@ jobs:
# - name: Linux Sources [Clone] # - name: Linux Sources [Clone]
# run: | # run: |
# /usr/bin/git clone --verbose --depth='1' --branch "${{ inputs.branch }}" 'https://github.com/raspberrypi/linux' # /usr/bin/git clone --verbose --depth='1' --branch "${{ inputs.branch }}" 'https://github.com/raspberrypi/linux'
- name: Linux Sources [Version] - name: Environment
id: environment id: environment
run: | run: |
VERSION='6.12.16' VERSION='6.12.16'
/usr/bin/echo "::set-output name=version::${VERSION}"
/usr/bin/echo "VERSION=${VERSION}" >> "${GITHUB_OUTPUT}" /usr/bin/echo "VERSION=${VERSION}" >> "${GITHUB_OUTPUT}"
/usr/bin/echo "Set Variable 'VERSION' to '${VERSION}'" /usr/bin/echo "Set Variable 'VERSION' to '${VERSION}'"
# - name: Linux Sources [Archive] # - name: Linux Sources [Archive]