-
Notifications
You must be signed in to change notification settings - Fork 2
270 lines (233 loc) · 12.2 KB
/
on-push.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
name: Push on develop - Build, test, create docker images & push them to docker hub
on:
push:
jobs:
# ====================================================================================================================
# Run unit tests.
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
# ================================================================================================================
- name: Retrieve the sources
uses: actions/checkout@v4
# ================================================================================================================
- name: Java Setup
uses: actions/setup-java@v4.3.0
with:
distribution: 'temurin'
java-version: '21'
# ================================================================================================================
- name: build and run tests
run: |
mvn clean test
# ====================================================================================================================
# Run integration tests.
integration_tests:
name: Integration tests
runs-on: ubuntu-latest
steps:
# ================================================================================================================
- name: Retrieve the sources
uses: actions/checkout@v4
# ================================================================================================================
- name: Java Setup
uses: actions/setup-java@v4.3.0
with:
distribution: 'temurin'
java-version: '21'
# ================================================================================================================
- name: build and run tests
run: |
mvn clean test -P integration
# ====================================================================================================================
# Run docker tests.
docker_tests:
name: Docker tests
runs-on: ubuntu-latest
steps:
# ================================================================================================================
- name: Retrieve the sources
uses: actions/checkout@v4
# ================================================================================================================
- name: Java Setup
uses: actions/setup-java@v4.3.0
with:
distribution: 'temurin'
java-version: '21'
# ================================================================================================================
- name: Build docker images
run: |
mvn clean install -P release -DskipTests
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-batch/pom.xml
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-api/pom.xml
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-web/pom.xml
# ================================================================================================================
- name: Run the docker compose with our images
run: |
docker compose up >> docker.logs 2>&1 &
sleep 60
# ================================================================================================================
# Checking request life cycle.
- name: Adding a request
id: addProofRequest
run: |
requestId=$(curl -H "Content-Type: application/json" \
-d '{ "query": "mutation { createAddProofRequest(input: {proof: \"${{ secrets.UNKNOWN_ROYLLO_COIN_RAW_PROOF }}\"}) { requestId }}" }' \
http://localhost:9090/graphql | jq -r '.data.createAddProofRequest.requestId')
echo "requestId=${requestId}" >> $GITHUB_OUTPUT
- name: Retrieving request status
id: requestByRequestId
run: |
sleep 90
status=$(curl -H "Content-Type: application/json" \
-d '{ "query": "{ requestByRequestId(requestId: \"${{ steps.addProofRequest.outputs.requestId }}\") { status }}" }' \
http://localhost:9090/graphql | jq -r '.data.requestByRequestId.status')
echo "status=${status}" >> $GITHUB_OUTPUT
- name: Check if the request has been treated
if: ${{ steps.requestByRequestId.outputs.status != 'SUCCESS' }}
run: |
echo "Error - request status is ${{ steps.requestByRequestId.outputs.status }}"
cat docker.logs
exit 1
- name: Retrieving the asset created by the request
id: assetByAssetId
run: |
name=$(curl -H "Content-Type: application/json" \
-d '{ "query": "{ assetByAssetId(assetId: \"${{ secrets.UNKNOWN_ROYLLO_COIN_ASSET_ID }}\") { name }}" }' \
http://localhost:9090/graphql | jq -r '.data.assetByAssetId.name')
echo "name=${name}" >> $GITHUB_OUTPUT
- name: Check if the asset has been created
if: ${{ steps.assetByAssetId.outputs.name != 'unknownRoylloCoin' }}
run: |
echo "Error - Asset '${{ steps.assetByAssetId.outputs.name }}' not found"
cat docker.logs
exit 1
# ====================================================================================================================
# Run code analysis.
code_analysis:
name: Code analysis
runs-on: ubuntu-latest
continue-on-error: true
if: github.ref == 'refs/heads/development'
steps:
# ================================================================================================================
- name: Retrieve the sources
uses: actions/checkout@v4
# ================================================================================================================
- name: Java Setup
uses: actions/setup-java@v4.3.0
with:
distribution: 'temurin'
java-version: '21'
# ================================================================================================================
# Using CodeQL.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
- name: Build and package
run: |
mvn package -DskipTests
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
# ====================================================================================================================
# Docker images push to docker hub.
docker_hub_push:
name: Docker images push to docker hub
runs-on: ubuntu-latest
needs: [ unit_tests, integration_tests, docker_tests ]
if: github.ref == 'refs/heads/development'
steps:
# ================================================================================================================
- name: Retrieve the sources
uses: actions/checkout@v4
# ================================================================================================================
- name: Java Setup
uses: actions/setup-java@v4.3.0
with:
distribution: 'temurin'
java-version: '21'
# ================================================================================================================
- name: Build docker images
run: |
mvn clean install -P release -DskipTests
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-batch/pom.xml
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-api/pom.xml
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-web/pom.xml
# ================================================================================================================
- name: Docker Hub login
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.EXPLORER_DOCKER_HUB_USERNAME }}
password: ${{ secrets.EXPLORER_DOCKER_HUB_PASSWORD }}
# ================================================================================================================
- name: Push docker images to Docker hub
run: |
docker push royllo/explorer-batch:latest
docker push royllo/explorer-api:latest
docker push royllo/explorer-web:latest
# ====================================================================================================================
# Docker images push to production.
production_push:
name: Docker images push to production
runs-on: ubuntu-latest
needs: [ unit_tests, integration_tests, docker_tests ]
if: startsWith(github.ref, 'refs/tags/')
steps:
# ================================================================================================================
- name: Retrieve the sources
uses: actions/checkout@v4
# ================================================================================================================
- name: Java Setup
uses: actions/setup-java@v4.3.0
with:
distribution: 'temurin'
java-version: '21'
# ================================================================================================================
- name: Build docker images
run: |
mvn clean install -P release -DskipTests
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-batch/pom.xml
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-api/pom.xml
mvn spring-boot:build-image -P release -DskipTests -f backend/servers/explorer-web/pom.xml
# ================================================================================================================
- name: Get release number
id: release
run: echo "version=$(mvn help:evaluate -D expression=project.version -q -D forceStdout)" >> $GITHUB_OUTPUT
# ================================================================================================================
# Publish to Docker Hub.
- name: Docker Hub login
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.EXPLORER_DOCKER_HUB_USERNAME }}
password: ${{ secrets.EXPLORER_DOCKER_HUB_PASSWORD }}
# ================================================================================================================
- name: Tag docker images
run: |
docker tag royllo/explorer-batch:latest royllo/explorer-batch:${{ steps.release.outputs.version }}
docker tag royllo/explorer-api:latest royllo/explorer-api:${{ steps.release.outputs.version }}
docker tag royllo/explorer-web:latest royllo/explorer-web:${{ steps.release.outputs.version }}
# ================================================================================================================
- name: Push tagged images to Docker hub
run: |
docker push royllo/explorer-batch:${{ steps.release.outputs.version }}
docker push royllo/explorer-api:${{ steps.release.outputs.version }}
docker push royllo/explorer-web:${{ steps.release.outputs.version }}
# ================================================================================================================
# Push to DigitalOcean Container Registry.
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Tag docker images
run: |
docker tag royllo/explorer-batch:latest registry.digitalocean.com/royllo/explorer-batch:production
docker tag royllo/explorer-api:latest registry.digitalocean.com/royllo/explorer-api:production
docker tag royllo/explorer-web:latest registry.digitalocean.com/royllo/explorer-web:production
- name: Push production images to DigitalOcean Container Registry
run: |
doctl registry login
docker push registry.digitalocean.com/royllo/explorer-batch:production
docker push registry.digitalocean.com/royllo/explorer-api:production
docker push registry.digitalocean.com/royllo/explorer-web:production