aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/daily.yml')
-rw-r--r--.github/workflows/daily.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
new file mode 100644
index 0000000..ae10b26
--- /dev/null
+++ b/.github/workflows/daily.yml
@@ -0,0 +1,42 @@
+name: Daily build
+
+on:
+ schedule:
+ - cron: '0 0 * * *'
+
+jobs:
+ master:
+ uses: ./.github/workflows/build-template.yml
+ with:
+ host: debian-bookworm
+ images: core-image-base core-image-weston core-image-x11 initramfs-test-image initramfs-test-full-image initramfs-firmware-image initramfs-rootfs-image cryptodev-module
+ machines: qcom-armv8a qcom-armv7a-modem qcom-armv7a
+ ref_type: branch
+ ref: master
+ branch: master
+ url: ${{github.server_url}}/${{github.repository}}
+ secrets: inherit
+
+ kirkstone:
+ uses: ./.github/workflows/build-template.yml
+ with:
+ host: debian-bookworm
+ images: core-image-base core-image-weston core-image-x11 initramfs-test-image initramfs-test-full-image initramfs-firmware-image initramfs-rootfs-image cryptodev-module
+ machines: qcom-armv8a sdx55-mtp qcom-armv7a
+ ref_type: branch
+ ref: kirkstone
+ branch: kirkstone
+ url: ${{github.server_url}}/${{github.repository}}
+ secrets: inherit
+
+ dunfell:
+ uses: ./.github/workflows/build-template.yml
+ with:
+ host: debian-bookworm
+ images: core-image-base core-image-weston core-image-x11 initramfs-test-image initramfs-test-full-image cryptodev-module
+ machines: qcom-armv8a
+ ref_type: branch
+ ref: dunfell
+ branch: dunfell
+ url: ${{github.server_url}}/${{github.repository}}
+ secrets: inherit