-
Notifications
You must be signed in to change notification settings - Fork 4
129 lines (118 loc) · 3.93 KB
/
debian-12-packaging.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
118
119
120
121
122
123
124
125
126
127
128
129
name: Debian 12 packaging
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- 'debian-12/**'
jobs:
eth-node-besu:
strategy:
matrix:
package-name: ["eth-node-besu"]
package-version-with-revision: ["23.10.1-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-erigon:
strategy:
matrix:
package-name: ["eth-node-erigon"]
package-version-with-revision: ["2.53.2-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-geth:
strategy:
matrix:
package-name: ["eth-node-geth"]
package-version-with-revision: ["1.13.4-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-lighthouse:
strategy:
matrix:
package-name: ["eth-node-lighthouse"]
package-version-with-revision: ["4.5.0-1"]
codename: ["debian-12"]
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-lodestar:
strategy:
matrix:
package-name: ["eth-node-lodestar"]
package-version-with-revision: ["1.11.3-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-nethermind:
strategy:
matrix:
package-name: ["eth-node-nethermind"]
package-version-with-revision: ["1.21.1-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-nimbus-eth2:
strategy:
matrix:
package-name: ["eth-node-nimbus-eth2"]
package-version-with-revision: ["24.3.0-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-prysm:
strategy:
matrix:
package-name: ["eth-node-prysm"]
package-version-with-revision: ["4.1.1-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}
eth-node-teku:
strategy:
matrix:
package-name: ["eth-node-teku"]
package-version-with-revision: ["23.10.0-1"]
codename: ["debian-12"]
fail-fast: false
uses: ./.github/workflows/pkgbuilder-deps.yml
with:
package-name: ${{ matrix.package-name }}
package-version-with-revision: ${{ matrix.package-version-with-revision }}
codename: ${{ matrix.codename }}