forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
199 lines (191 loc) · 5.96 KB
/
_publish_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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
name: Build
permissions:
contents: read
on:
workflow_call:
secrets:
dockerhub-username:
required: false
dockerhub-password:
required: false
gcs-cache-key:
required: true
gpg-key:
required: true
gpg-key-password:
required: true
inputs:
gcs-cache-bucket:
type: string
required: true
request:
type: string
required: true
trusted:
type: boolean
required: true
concurrency:
group: >-
${{ github.actor != 'trigger-release-envoy[bot]'
&& github.event.inputs.head_ref
|| github.run_id
}}-${{ github.event.workflow.id }}-publish
cancel-in-progress: true
jobs:
binary:
secrets:
gcs-cache-key: ${{ secrets.gcs-cache-key }}
permissions:
contents: read
packages: read
name: ${{ matrix.name || matrix.target }}
uses: ./.github/workflows/_run.yml
with:
arch: ${{ matrix.arch }}
bazel-extra: ${{ matrix.bazel-extra }}
target: ${{ matrix.target }}
target-suffix: ${{ matrix.arch }}
cache-build-image: ${{ fromJSON(inputs.request).request.build-image.default }}
cache-build-image-key-suffix: ${{ matrix.arch == 'arm64' && format('-{0}', matrix.arch) || '' }}
concurrency-suffix: -${{ matrix.arch }}
gcs-cache-bucket: ${{ inputs.gcs-cache-bucket }}
rbe: ${{ matrix.rbe }}
request: ${{ inputs.request }}
runs-on: ${{ matrix.runs-on }}
timeout-minutes: 120
trusted: ${{ inputs.trusted }}
upload-name: release.${{ matrix.arch }}
upload-path: envoy/${{ matrix.arch }}/bin/
strategy:
fail-fast: false
matrix:
include:
- target: release.server_only
name: Release (x64)
arch: x64
bazel-extra: >-
--config=remote-envoy-engflow
rbe: true
runs-on: ubuntu-24.04
- target: release.server_only
name: Release (arm64)
arch: arm64
bazel-extra: >-
--config=remote-cache-envoy-engflow
rbe: false
runs-on: envoy-arm64-medium
distribution:
permissions:
contents: read
packages: read
secrets:
gcs-cache-key: ${{ secrets.gcs-cache-key }}
gpg-key: ${{ secrets.gpg-key }}
gpg-key-password: ${{ secrets.gpg-key-password }}
name: ${{ matrix.name || matrix.target }}
needs:
- binary
uses: ./.github/workflows/_run.yml
with:
arch: ${{ matrix.arch }}
bazel-extra: >-
--config=remote-cache-envoy-engflow
downloads: |
release.${{ matrix.arch }}: release/${{ matrix.arch }}/bin/
target: ${{ matrix.target }}
target-suffix: ${{ matrix.arch }}
cache-build-image: ${{ fromJSON(inputs.request).request.build-image.default }}
cache-build-image-key-suffix: ${{ matrix.cache-build-image-key-suffix }}
concurrency-suffix: -${{ matrix.arch }}
gcs-cache-bucket: ${{ inputs.gcs-cache-bucket }}
import-gpg: true
rbe: false
request: ${{ inputs.request }}
runs-on: ${{ matrix.runs-on }}
trusted: ${{ inputs.trusted }}
upload-name: packages.${{ matrix.arch }}
upload-path: envoy/${{ matrix.arch }}
strategy:
fail-fast: false
matrix:
include:
- target: distribution
name: Package debs (x64)
arch: x64
runs-on: ubuntu-24.04
- target: distribution
name: Package debs (arm64)
arch: arm64
cache-build-image-key-suffix: -arm64
runs-on: github-arm64-2c-8gb
docker:
permissions:
contents: read
packages: read
secrets:
dockerhub-username: ${{ secrets.dockerhub-username }}
dockerhub-password: ${{ secrets.dockerhub-password }}
name: ${{ matrix.name || matrix.target }}
needs:
- binary
uses: ./.github/workflows/_run.yml
with:
target: ${{ matrix.target }}
cache-build-image: ${{ fromJSON(inputs.request).request.build-image.default }}
downloads: |
release.arm64: envoy/arm64/bin/
release.x64: envoy/x64/bin/
request: ${{ inputs.request }}
runs-on: ${{ matrix.runs-on }}
source: |
export NO_BUILD_SETUP=1
export ENVOY_DOCKER_IN_DOCKER=1
trusted: ${{ inputs.trusted }}
upload-name: docker
upload-path: build_images
strategy:
fail-fast: false
matrix:
include:
- target: docker
name: Docker (Linux multiarch)
runs-on: ubuntu-24.04
sign:
permissions:
contents: read
packages: read
secrets:
gcs-cache-key: ${{ secrets.gcs-cache-key }}
gpg-key: ${{ secrets.gpg-key }}
gpg-key-password: ${{ secrets.gpg-key-password }}
name: ${{ matrix.name || matrix.target }}
needs:
- distribution
uses: ./.github/workflows/_run.yml
with:
target: release.signed
bazel-extra: >-
--//distribution:x64-packages=//distribution:custom/x64/packages.x64.tar.gz
--//distribution:arm64-packages=//distribution:custom/arm64/packages.arm64.tar.gz
--//distribution:x64-release=//distribution:custom/x64/bin/release.tar.zst
--//distribution:arm64-release=//distribution:custom/arm64/bin/release.tar.zst
cache-build-image: ${{ fromJSON(inputs.request).request.build-image.default }}
downloads: |
packages.arm64: envoy/arm64/
packages.x64: envoy/x64/
release.arm64: envoy/arm64/bin/
release.x64: envoy/x64/bin/
gcs-cache-bucket: ${{ inputs.gcs-cache-bucket }}
import-gpg: true
request: ${{ inputs.request }}
runs-on: ubuntu-24.04
source: |
export NO_BUILD_SETUP=1
trusted: ${{ inputs.trusted }}
upload-name: release.signed
upload-path: envoy/release.signed.tar.zst
steps-pre: |
- run: |
mkdir distribution/custom
cp -a %{{ runner.temp }}/envoy/x64 %{{ runner.temp }}/envoy/arm64 distribution/custom
shell: bash