forked from eclipse-ditto/ditto
-
Notifications
You must be signed in to change notification settings - Fork 0
215 lines (213 loc) · 7.11 KB
/
docker-nightly.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
# Copyright (c) 2021 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
name: push-dockerhub-nightly
on:
schedule:
- cron: '0 1 * * *' # run at 1 AM UTC
workflow_dispatch:
jobs:
build:
if: github.repository == 'eclipse-ditto/ditto'
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2 # setup buildx in order to do build and push multi-architecture images
-
name: Inspect buildx builder
run: |
echo "Name: ${{ steps.buildx.outputs.name }}"
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
echo "Status: ${{ steps.buildx.outputs.status }}"
echo "Flags: ${{ steps.buildx.outputs.flags }}"
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: eclipsedittobot
password: ${{ secrets.DOCKER_HUB_TOKEN }}
-
name: Branch name
id: branch_name
run: |
echo "IMAGE_TAG=nightly" >> $GITHUB_ENV
-
name: Building + pushing Docker images for tag
run: |
echo $IMAGE_TAG
-
name: Build and push ditto-policies
uses: docker/build-push-action@v4
with:
context: .
file: dockerfile-release
platforms: linux/amd64,linux/arm64
build-args: |
SERVICE_STARTER=ditto-policies-service
SERVICE_VERSION=0-SNAPSHOT
MAIN_CLASS=org.eclipse.ditto.policies.service.starter.PoliciesService
pull: true
push: true
tags: |
eclipse/ditto-policies:${{ env.IMAGE_TAG }}
-
name: Build and push ditto-things
uses: docker/build-push-action@v4
with:
context: .
file: dockerfile-release
platforms: linux/amd64,linux/arm64
build-args: |
SERVICE_STARTER=ditto-things-service
SERVICE_VERSION=0-SNAPSHOT
MAIN_CLASS=org.eclipse.ditto.things.service.starter.ThingsService
pull: true
push: true
tags: |
eclipse/ditto-things:${{ env.IMAGE_TAG }}
-
name: Build and push ditto-gateway
uses: docker/build-push-action@v4
with:
context: .
file: dockerfile-release
platforms: linux/amd64,linux/arm64
build-args: |
SERVICE_STARTER=ditto-gateway-service
SERVICE_VERSION=0-SNAPSHOT
MAIN_CLASS=org.eclipse.ditto.gateway.service.starter.GatewayService
pull: true
push: true
tags: |
eclipse/ditto-gateway:${{ env.IMAGE_TAG }}
-
name: Build and push ditto-thingsearch
uses: docker/build-push-action@v4
with:
context: .
file: dockerfile-release
platforms: linux/amd64,linux/arm64
build-args: |
SERVICE_STARTER=ditto-thingsearch-service
SERVICE_VERSION=0-SNAPSHOT
MAIN_CLASS=org.eclipse.ditto.thingsearch.service.starter.SearchService
pull: true
push: true
tags: |
eclipse/ditto-things-search:${{ env.IMAGE_TAG }}
-
name: Build and push ditto-connectivity
uses: docker/build-push-action@v4
with:
context: .
file: dockerfile-release
platforms: linux/amd64,linux/arm64
build-args: |
SERVICE_STARTER=ditto-connectivity-service
SERVICE_VERSION=0-SNAPSHOT
MAIN_CLASS=org.eclipse.ditto.connectivity.service.ConnectivityService
JVM_CMD_ARGS=--add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.base/sun.security.util=ALL-UNNAMED
pull: true
push: true
tags: |
eclipse/ditto-connectivity:${{ env.IMAGE_TAG }}
-
name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 20
-
name: Install npm dependencies
run: npm install
working-directory: ./ui
-
name: Build UI with node
run: npm run build
working-directory: ./ui
-
name: Build and push ditto-ui image
uses: docker/build-push-action@v4
with:
context: ./ui
file: ui/Dockerfile
platforms: linux/amd64,linux/arm64
pull: true
push: true
tags: |
eclipse/ditto-ui:${{ env.IMAGE_TAG }}
-
name: Run Trivy vulnerability scanner for ditto-policies
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/eclipse/ditto-policies:${{ env.IMAGE_TAG }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL'
-
name: Run Trivy vulnerability scanner for ditto-things
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/eclipse/ditto-things:${{ env.IMAGE_TAG }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL'
-
name: Run Trivy vulnerability scanner for ditto-gateway
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/eclipse/ditto-gateway:${{ env.IMAGE_TAG }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL'
-
name: Run Trivy vulnerability scanner for ditto-things-search
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/eclipse/ditto-things-search:${{ env.IMAGE_TAG }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL'
-
name: Run Trivy vulnerability scanner for ditto-connectivity
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/eclipse/ditto-connectivity:${{ env.IMAGE_TAG }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL'
-
name: Run Trivy vulnerability scanner for ditto-ui
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/eclipse/ditto-ui:${{ env.IMAGE_TAG }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL'