forked from ros-realtime/linux-real-time-kernel-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (32 loc) · 977 Bytes
/
build-stable.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: 'Build stable'
on:
workflow_dispatch:
inputs:
kernel_version:
description: 'Raspi kernel version, 6.8.0'
default: '6.8.0'
required: false
type: string
ubuntu_version:
description: 'Ubuntu version, jammy|noble'
default: 'noble'
required: false
type: string
uname_r:
description: 'raspi release in the form of <6.8.0-1005-raspi>'
required: true
default: '6.8.0-1005-raspi'
type: string
lttng_version:
description: 'LTTNG version 2.13'
default: '2.13'
required: false
type: string
jobs:
call-rpi4-kernel-build:
uses: ./.github/workflows/rpi4-kernel-build.yml
with:
uname_r: ${{ github.event.inputs.uname_r }}
kernel_version: ${{ github.event.inputs.kernel_version }}
ubuntu_version: ${{ github.event.inputs.ubuntu_version }}
lttng_version: ${{ github.event.inputs.lttng_version }}