-
-
Notifications
You must be signed in to change notification settings - Fork 22
117 lines (110 loc) · 2.38 KB
/
build.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: Build Images
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 5 * * *'
jobs:
## linux / ubuntu
ubuntu-24:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: ubuntu-24
tags: ubuntu-noble ubuntu latest
ubuntu-22:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: ubuntu-22
tags: ubuntu-jammy
ubuntu-20:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: ubuntu-20
tags: ubuntu-focal
ubuntu-18:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: ubuntu-18
tags: ubuntu-bionic
ubuntu-16:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: ubuntu-16
tags: ubuntu-xenial
## linux / debian
debian-12:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: debian-12
tags: debian-bookworm debian
debian-11:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: debian-11
tags: debian-bullseye
debian-10:
uses: ./.github/workflows/_build-linux.yml
secrets: inherit
with:
name: debian-10
tags: debian-buster
## linux / alpine
alpine-3:
uses: ./.github/workflows/_build-linux.yml
needs: ubuntu-22
secrets: inherit
with:
name: alpine-3
tags: alpine
## linux / rocky
rocky-9:
uses: ./.github/workflows/_build-linux.yml
needs: ubuntu-22
secrets: inherit
with:
name: rocky-9
tags: rocky
rocky-8:
uses: ./.github/workflows/_build-linux.yml
needs: ubuntu-22
secrets: inherit
with:
name: rocky-8
## linux / centos
centos-9:
uses: ./.github/workflows/_build-linux.yml
needs: ubuntu-22
secrets: inherit
with:
name: centos-9
tags: centos
## windows / default
windows-1809:
uses: ./.github/workflows/_build-windows.yml
secrets: inherit
with:
name: windows-1809
tags: windows
## windows / core
windows-core-2019:
uses: ./.github/workflows/_build-windows.yml
secrets: inherit
with:
name: windows-core-2019
tags: windows-core
windows-core-1809:
uses: ./.github/workflows/_build-windows.yml
secrets: inherit
with:
name: windows-core-1809