aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily.yml
blob: ae10b26b5e0310f39f1d51edec9716b4c65a00fc (plain)
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
34
35
36
37
38
39
40
41
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