forked from gsu-protocol/oracle-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
231 lines (218 loc) · 7.83 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
name: Build & Publish Docker Images
# Build & Push rebuilds the tendermint docker image on every push to master and creation of tags
# and pushes the image to https://hub.docker.com/r/interchainio/simapp/tags
on:
workflow_dispatch: # Allow manual trigger
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- name: Docker Oracle-suite full metadata
id: metaoraclesuite
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/oracle-suite
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker Gofer metadata
id: metagofer
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/gofer
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker Spire metadata
id: metaspire
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/spire
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker Ghost metadata
id: metaghost
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/ghost
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker Spectre metadata
id: metaspectre
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/spectre
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker Leeloo metadata
id: metaleeloo
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/leeloo
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker Lair metadata
id: metalair
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/lair
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker RPC Splitter metadata
id: metarpcsplitter
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/rpc-splitter
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker SSB RPC Client metadata
id: metassbrpcclient
uses: docker/metadata-action@v3
with:
images: ghcr.io/chronicleprotocol/ssb-rpc-client
tags: |
type=raw,value=latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
id: buildx
with:
install: true
- name: Login to Github Packages
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker image with all binaries
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metaoraclesuite.outputs.tags }}
labels: ${{ steps.metaoraclesuite.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for Gofer
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-gofer
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metagofer.outputs.tags }}
labels: ${{ steps.metagofer.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for Spire
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-spire
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metaspire.outputs.tags }}
labels: ${{ steps.metaspire.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for Ghost
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-ghost
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metaghost.outputs.tags }}
labels: ${{ steps.metaghost.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for Spectre
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-spectre
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metaspectre.outputs.tags }}
labels: ${{ steps.metaspectre.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for LeeLoo
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-leeloo
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metaleeloo.outputs.tags }}
labels: ${{ steps.metaleeloo.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for Lair
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-lair
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metalair.outputs.tags }}
labels: ${{ steps.metalair.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for RPC Splitter
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-rpc-splitter
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metarpcsplitter.outputs.tags }}
labels: ${{ steps.metarpcsplitter.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker image for SSB RPC Client
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile-ssb-rpc-client
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.metassbrpcclient.outputs.tags }}
labels: ${{ steps.metassbrpcclient.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max