-
Notifications
You must be signed in to change notification settings - Fork 14
145 lines (145 loc) · 3.37 KB
/
bins.yaml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# Builds all runtime packages. Normally all packages
# uses the bin-package file, but some of them uses:
# - bin-package-18.04 when the build requires ubuntu 18.04
# - bin-package-no-tag when the built package should not
# be linked to the release tag
name: Runtime packages
on:
push:
branches:
- "*"
tags:
- "v*"
jobs:
containerd:
uses: ./.github/workflows/bin-package.yaml
with:
package: containerd
secrets:
token: ${{ secrets.HUB_JWT }}
runc:
uses: ./.github/workflows/bin-package.yaml
with:
package: runc
secrets:
token: ${{ secrets.HUB_JWT }}
virtwhat:
uses: ./.github/workflows/bin-package.yaml
with:
package: virtwhat
secrets:
token: ${{ secrets.HUB_JWT }}
yggdrasil:
uses: ./.github/workflows/bin-package.yaml
with:
package: yggdrasil
secrets:
token: ${{ secrets.HUB_JWT }}
rfs:
uses: ./.github/workflows/bin-package.yaml
with:
package: rfs
secrets:
token: ${{ secrets.HUB_JWT }}
hdparm:
uses: ./.github/workflows/bin-package.yaml
with:
package: hdparm
secrets:
token: ${{ secrets.HUB_JWT }}
corex:
uses: ./.github/workflows/bin-package.yaml
with:
package: corex
secrets:
token: ${{ secrets.HUB_JWT }}
shimlogs:
uses: ./.github/workflows/bin-package.yaml
with:
package: shimlogs
secrets:
token: ${{ secrets.HUB_JWT }}
cloudhypervisor:
uses: ./.github/workflows/bin-package.yaml
with:
package: cloudhypervisor
secrets:
token: ${{ secrets.HUB_JWT }}
tailstream:
uses: ./.github/workflows/bin-package.yaml
with:
package: tailstream
secrets:
token: ${{ secrets.HUB_JWT }}
virtiofsd:
uses: ./.github/workflows/bin-package.yaml
with:
package: virtiofsd
secrets:
token: ${{ secrets.HUB_JWT }}
vector:
uses: ./.github/workflows/bin-package.yaml
with:
package: vector
secrets:
token: ${{ secrets.HUB_JWT }}
nnc:
uses: ./.github/workflows/bin-package.yaml
with:
package: nnc
secrets:
token: ${{ secrets.HUB_JWT }}
tpm:
uses: ./.github/workflows/bin-package-18.04.yaml
with:
package: tpm
secrets:
token: ${{ secrets.HUB_JWT }}
qsfs:
uses: ./.github/workflows/bin-package-no-tag.yaml
with:
package: qsfs
secrets:
token: ${{ secrets.HUB_JWT }}
traefik:
uses: ./.github/workflows/bin-package-no-tag.yaml
with:
package: traefik
secrets:
token: ${{ secrets.HUB_JWT }}
cloudconsole:
uses: ./.github/workflows/bin-package.yaml
with:
package: cloudconsole
secrets:
token: ${{ secrets.HUB_JWT }}
misc:
uses: ./.github/workflows/bin-package.yaml
with:
package: misc
secrets:
token: ${{ secrets.HUB_JWT }}
iperf:
uses: ./.github/workflows/bin-package.yaml
with:
package: iperf
secrets:
token: ${{ secrets.HUB_JWT }}
cpubench:
uses: ./.github/workflows/bin-package.yaml
with:
package: cpubench
secrets:
token: ${{ secrets.HUB_JWT }}
mycelium:
uses: ./.github/workflows/bin-package.yaml
with:
package: mycelium
secrets:
token: ${{ secrets.HUB_JWT }}
mdadm:
uses: ./.github/workflows/bin-package-18.04.yaml
with:
package: mdadm
secrets:
token: ${{ secrets.HUB_JWT }}