forked from qualcomm-linux/qcom-deb-images
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 1.2 KB
/
linux-daily-monza.yml
File metadata and controls
31 lines (28 loc) · 1.2 KB
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
name: Daily monza linux build
on:
# run daily at 6:30am
schedule:
- cron: '30 5 * * *'
# allow manual runs
workflow_dispatch:
permissions:
checks: write # linux.yml
contents: read # linux.yml
packages: read # linux.yml
pull-requests: write # linux.yml
jobs:
build:
# don't run cron from forks of the main repository or from other branches
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/linux.yml
with:
kernel_name: monza
build_linux_deb_extra_args: '--repo https://github.com/qualcomm-linux/kernel-topics --ref early/hwe/monza'
# workaround-hexagon-dsp-binaries-monza can be dropped once an
# updated hexagon-dsp-binaries with Monza support is integrated; see
# https://github.com/qualcomm-linux/qcom-deb-images/issues/298 and
# https://github.com/linux-msm/hexagon-dsp-binaries/pull/59
# workaround-initramfs-firmware-monaco adds firmware to initramfs; see
# https://github.com/qualcomm-linux/qcom-deb-images/issues/258
debos_extra_args: '-t overlays:qsc-deb-releases,workaround-hexagon-dsp-binaries-monza,workaround-initramfs-firmware-monaco'
secrets: inherit