-
Notifications
You must be signed in to change notification settings - Fork 145
50 lines (46 loc) · 2.13 KB
/
nightly.yml
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
43
44
45
46
47
48
49
name: nightly
on:
workflow_dispatch:
pull_request:
jobs:
packages:
strategy:
fail-fast: false
matrix:
arch:
- amd64
- arm64
dist:
#- {target: "debian-bullseye", image: "debian:bullseye"}
- {target: "debian-bookworm", image: "debian:bookworm"}
#- {target: "ubuntu-focal", image: "ubuntu:focal"}
#- {target: "ubuntu-jammy", image: "ubuntu:jammy"}
#- {target: "ubuntu-noble", image: "ubuntu:noble"}
#- {target: "centos-9", image: "quay.io/centos/centos:stream9"}
#- {target: "fedora-39", image: "fedora:39"}
#- {target: "fedora-40", image: "fedora:40"}
#- {target: "rhel-8", image: "registry.access.redhat.com/ubi8/ubi"}
#- {target: "rhel-9", image: "registry.access.redhat.com/ubi9/ubi"}
include:
- arch: static
dist: {target: "static", image: ""}
#- arch: armhf
# dist: {target: "debian-bullseye", image: "debian:bullseye"}
#- arch: armhf
# dist: {target: "debian-bookworm", image: "debian:bookworm"}
#- arch: armhf
# dist: {target: "ubuntu-focal", image: "ubuntu:focal"}
#- arch: armhf
# dist: {target: "ubuntu-jammy", image: "ubuntu:jammy"}
#- arch: armhf
# dist: {target: "ubuntu-noble", image: "ubuntu:noble"}
# TODO
# - arch: armhf
# dist: {target: "raspbian-bullseye", image: "balenalib/rpi-raspbian:bullseye"}
# - arch: armhf
# dist: {target: "raspbian-bookworm", image: "balenalib/rpi-raspbian:bookworm"}
uses: ./.github/workflows/.nightly.yml
with:
arch: ${{ matrix.arch }}
target: ${{ matrix.dist.target }}
image: ${{ matrix.dist.image }}