-
Notifications
You must be signed in to change notification settings - Fork 26
275 lines (240 loc) · 10.1 KB
/
docker.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
---
name: Build docker image
on:
push:
tags:
- "v*"
branches:
- "dockerbuild"
- "develop"
- "release/v*"
- "feature/*"
workflow_dispatch:
inputs:
geth_version:
description: 'The Geth version to build from'
required: true
default: 'latest-fh2'
flavors:
description: 'JSON-formatted list of flavors to build'
required: true
default: '["geth","bsc","polygon"]' # careful, this value is not used in automatic triggers, this value is repeated in step bundle-docker-versions
type: string
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-vanilla:
runs-on: ubuntu-20.04
permissions:
contents: read
packages: write
strategy:
matrix:
go-version: [1.21.x]
outputs:
tags: ${{ steps.meta.outputs.tags }}
env:
SLACK_IDS: ${{ vars.SLACK_IDS }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Branch name
id: extract_branch
shell: bash
run: |
echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
echo "##[set-output name=release_train;]$(echo ${GITHUB_REF#refs/heads/release/})"
- name: Build
run: go build -v -ldflags "-X main.version=${{ github.event.ref }}" -o ./fireeth ./cmd/fireeth
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate docker tags/labels from github build context
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=tag
type=sha,prefix=,enable=true
type=raw,enable=${{ github.ref == 'refs/heads/develop' }},value=develop
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.extract_branch.outputs.release_train }}
flavor: |
latest=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Check SLACK_IDS env variable
run: |
if [ -z "${SLACK_IDS}" ]; then
echo "SLACK_IDS is empty"
exit 1
fi
- name: Get Slack ID
id: get-slack-id
run: |
SLACK_IDS=$(echo "$SLACK_IDS" | sed 's/\\//g')
SLACK_ID=$(echo "$SLACK_IDS" | jq -r ".${{ github.actor }}")
echo "SLACK_ID=$SLACK_ID"
echo "::set-output name=SLACK_ID::$SLACK_ID"
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Notify build failure on Slack
if: ${{ failure() }}
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
uses: Ilshidur/[email protected]
with:
args: |
:x: <@${{ steps.get-slack-id.outputs.SLACK_ID }}> *${{ github.repository }}* Failed building docker image from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :broken_heart:
bundle-docker-versions:
needs: build-vanilla
runs-on: ubuntu-20.04
if: ${{ startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, 'build:all') || github.event_name == 'workflow_dispatch' }}
permissions:
contents: read
packages: write
outputs:
geth: ${{ steps.print.outputs.geth }}
bsc: ${{ steps.print.outputs.bsc }}
polygon: ${{ steps.print.outputs.polygon }}
strategy:
matrix:
binary: ${{ fromJSON(github.event.inputs.flavors || '["geth","bsc","polygon"]' ) }}
env:
SLACK_IDS: ${{ vars.SLACK_IDS }}
steps:
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Branch name
id: extract_branch
shell: bash
run: |
echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
echo "##[set-output name=release_train;]$(echo ${GITHUB_REF#refs/heads/release/})"
- run: |
docker pull ghcr.io/streamingfast/go-ethereum:${{ matrix.binary }}-${GETH_VERSION:-latest-fh2}
echo VERSION=$(docker inspect --format='{{index .Config.Labels "org.opencontainers.image.version"}}' 'ghcr.io/streamingfast/go-ethereum':${{ matrix.binary }}-${GETH_VERSION:-latest-fh2}) >> $GITHUB_ENV
echo SF_VERSION=$(echo "${{ needs.build-vanilla.outputs.tags }}" | grep -Ev "(develop|0.1[01].x)" | head -n 1 |cut -d: -f2) >> $GITHUB_ENV
env:
GETH_VERSION: ${{ github.event.inputs.geth_version }}
- name: Generate docker tags/labels from github build context
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=tag,suffix=-${{ env.VERSION }}
type=ref,event=tag,suffix=-${{ matrix.binary }}
type=sha,prefix=,suffix=-${{ env.VERSION }},enable=true
type=sha,prefix=,suffix=-${{ matrix.binary }},enable=true
type=raw,prefix=,suffix=-${{ env.VERSION }},enable=${{ github.ref == 'refs/heads/develop' }},value=develop
type=raw,prefix=,suffix=-${{ matrix.binary }},enable=${{ github.ref == 'refs/heads/develop' }},value=develop
type=raw,prefix=,suffix=-${{ env.VERSION }},enable=${{ github.ref == 'refs/heads/dockerbuild' }},value=manual
type=raw,prefix=,suffix=-${{ matrix.binary }},enable=${{ github.ref == 'refs/heads/dockerbuild' }},value=manual
type=raw,prefix=,suffix=-${{ env.VERSION }},enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.extract_branch.outputs.release_train }}
type=raw,prefix=,suffix=-${{ matrix.binary }},enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.extract_branch.outputs.release_train }}
flavor: latest=false
- name: Check SLACK_IDS env variable
run: |
if [ -z "${SLACK_IDS}" ]; then
echo "SLACK_IDS is empty"
exit 1
fi
- name: Get Slack ID
id: get-slack-id
run: |
SLACK_IDS=$(echo "$SLACK_IDS" | sed 's/\\//g')
SLACK_ID=$(echo "$SLACK_IDS" | jq -r ".${{ github.actor }}")
echo "SLACK_ID=$SLACK_ID"
echo "::set-output name=SLACK_ID::$SLACK_ID"
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./Dockerfile.bundle
build-args: |
CHAIN_VERSION=${{ env.VERSION }}
SF_VERSION=${{ env.SF_VERSION }}
- name: Notify build failure on Slack
if: ${{ failure() }}
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
uses: Ilshidur/[email protected]
with:
args: |
:x: <@${{ steps.get-slack-id.outputs.SLACK_ID }}> *${{ github.repository }}* Failed bundling docker versions from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :broken_heart:
- id: print
run: |
OUT="${{ steps.meta.outputs.tags }}"
OUT="${OUT//'%'/'%25'}"
OUT="${OUT//$'\n'/' '}"
OUT="${OUT//$'\r'/' '}"
echo "${{ matrix.binary }}=$OUT" >> $GITHUB_OUTPUT
slack-notifications-vanilla:
if: ${{ !startsWith(github.ref, 'refs/tags/') && !contains(github.event.head_commit.message, 'build:all') && github.event_name != 'workflow_dispatch' }}
needs: [build-vanilla]
runs-on: ubuntu-20.04
env:
SLACK_IDS: ${{ vars.SLACK_IDS }}
steps:
- name: Get Slack ID
id: get-slack-id
run: |
SLACK_IDS=$(echo "$SLACK_IDS" | sed 's/\\//g')
SLACK_ID=$(echo "$SLACK_IDS" | jq -r ".${{ github.actor }}")
echo "SLACK_ID=$SLACK_ID"
echo "::set-output name=SLACK_ID::$SLACK_ID"
- name: Slack notification
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
uses: Ilshidur/[email protected]
with:
args: |
:done: <@${{ steps.get-slack-id.outputs.SLACK_ID }}> *${{ github.repository }}* Success building docker image from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :sparkling_heart: ```${{ join(needs.build-vanilla.outputs.tags, ' ') }}```
slack-notifications:
needs: [ build-vanilla, bundle-docker-versions ]
runs-on: ubuntu-20.04
env:
SLACK_IDS: ${{ vars.SLACK_IDS }}
steps:
- name: Get Slack ID
id: get-slack-id
run: |
SLACK_IDS=$(echo "$SLACK_IDS" | sed 's/\\//g')
SLACK_ID=$(echo "$SLACK_IDS" | jq -r ".${{ github.actor }}")
echo "SLACK_ID=$SLACK_ID"
echo "::set-output name=SLACK_ID::$SLACK_ID"
- name: Slack notification
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
uses: Ilshidur/[email protected]
with:
args: |
:done: <@${{ steps.get-slack-id.outputs.SLACK_ID }}> *${{ github.repository }}* Success building docker images from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :sparkling_heart: ```${{ join(needs.build-vanilla.outputs.tags, ' ') }}
${{ needs.bundle-docker-versions.outputs.geth }}
${{ needs.bundle-docker-versions.outputs.bsc }}
${{ needs.bundle-docker-versions.outputs.polygon }}```