Initialize Git Repository: 'ATEST'
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
name: Step 1
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
VERSION:
|
||||
required: true
|
||||
type: string
|
||||
jobs:
|
||||
job1:
|
||||
name: Job 1
|
||||
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: Step 1
|
||||
run: |
|
||||
/usr/bin/echo "Kernel: ${{ matrix.kernel }}"
|
||||
/usr/bin/echo "Runner: ${{ matrix.runner }}"
|
||||
/usr/bin/echo "Version: ${{ inputs.VERSION }}"
|
||||
Reference in New Issue
Block a user