Files
ATEST/.gitea/workflows/rpi-6.12.y.yml
T
Cantibra a47d05704b
Raspberry Pi Linux Kernel 6.12.y / sources (push) Successful in 0s
Raspberry Pi Linux Kernel 6.12.y / echo (push) Successful in 0s
Raspberry Pi Linux Kernel 6.12.y / build (push) Failing after 1s
25
2026-05-06 10:52:16 +02:00

30 lines
631 B
YAML

name: Raspberry Pi Linux Kernel 6.12.y
on:
- push
# branches:
# - rpi-6.12.y
env:
BRANCH: rpi-6.12.y
jobs:
sources:
uses: ./.gitea/workflows/sources.yml
with:
BRANCH: ${{ env.branch }}
outputs:
VERSION: ${{ jobs.sources.outputs.version }}
echo:
runs-on: cicd.any
needs:
- sources
steps:
- name: Linux Sources [Clone]
env:
VERSION: ${{ steps.environment.outputs.version }}
run: |
echo ${VERSION}
build:
needs:
- sources
uses: ./.gitea/workflows/build.yml
with:
VERSION: ${{ needs.sources.outputs.version }}