-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconfig.yml
519 lines (507 loc) · 15.9 KB
/
config.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
version: 2.1
commands:
prepare:
steps:
- checkout
- run:
name: Check out Web3j
command: |
git clone https://github.com/drinkcoffee/web3j-abi.git ../web3j-abi
git --git-dir=../web3j-abi/.git rev-parse HEAD > ../web3j-abi/headcommit
- restore_cache:
name: Restore cached Web3j gradle dependencies
keys:
- deps-web3j-{{ checksum "../web3j-abi/build.gradle" }}
- deps-web3j
- restore_cache:
name: Restore cached GPACT gradle dependencies
keys:
- deps-gpact-{{ checksum "build.gradle" }}
- deps-gpact
- restore_cache:
name: Restore gradle build cache
keys: # by decreasing rate of change...
- build-cache-{{ checksum "../web3j-abi/headcommit" }}-{{ .Revision }}
- build-cache-{{ checksum "../web3j-abi/headcommit" }}
- build-cache
- run:
name: Install Solidity
command: |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1C52189C923F6CA9
sudo apt-get update
sudo apt-get -y install software-properties-common
sudo apt-get update
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get -y install solc
capture_test_results:
steps:
- run:
name: Gather test results
when: always
command: |
FILES=`find . -name test-results`
for FILE in $FILES
do
MODULE=`echo "$FILE" | sed -e 's@./\(.*\)/build/test-results@\1@'`
TARGET="build/test-results/$MODULE"
mkdir -p "$TARGET"
cp -rf ${FILE}/*/* "$TARGET"
done
# show what is being gathered
ls -R build/test-results
- store_test_results:
path: build/test-results
jobs:
javasdk-build:
machine:
image: ubuntu-2004:202107-02
resource_class: medium
steps:
# The home directory is: /home/circleci/project
# gpact is cloned to: /home/circleci/project/.
# web3j is cloned to: /home/circleci/web3j-abi
- prepare
- run:
name: Build web3j
command: |
# Build our Web3j
cd ../web3j-abi
./gradlew --parallel --stacktrace --info --build-cache installDist
- run:
name: Check code formatting, compile the code, everything but execute any tests
command: ./gradlew build -x test -x intTest -x perfTest
- save_cache:
name: Caching Web3j gradle dependencies
key: deps-web3j-{{ checksum "../web3j-abi/build.gradle" }}
paths:
- ../web3j/.gradle
- save_cache:
name: Caching GPACT gradle dependencies
key: deps-gpact-{{ checksum "build.gradle" }}
paths:
- .gradle
- save_cache:
name: Caching gradle build cache
key: build-cache-{{ checksum "../web3j-abi/headcommit" }}-{{ .Revision }}
paths:
- ~/.gradle
javaUnitTestsMachine:
machine:
image: ubuntu-2004:202107-02
resource_class: large
steps:
# The home directory is: /home/circleci/project
# gpact is cloned to: /home/circleci/project/.
# web3j is cloned to: /home/circleci/web3j-abi
- prepare
- run:
name: Build web3j
command: |
# Build our Web3j
cd ../web3j-abi
./gradlew --parallel --stacktrace --info --build-cache installDist
- run:
name: Create Relayer containers
working_directory: services/relayer
command: make docker
- run:
name: Create Message Store container
working_directory: services/message-store
command: make docker
- run:
name: Create and Start blockchains
working_directory: test-blockchains
background: true
command: docker-compose build && docker-compose up
- run: sleep 30
- run:
name: Build and test
command: ./gradlew test
- run:
name: Stop blockchains
working_directory: test-blockchains
command: docker-compose stop
when: always
- run:
name: Logs from bc31
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc31node1_1
when: always
- run:
name: Logs from bc32
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc32node1_1
when: always
- run:
name: Logs from bc33
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc33node1_1
when: always
- run:
name: Logs from observer
working_directory: test-blockchains
command: |
docker container logs observer
when: always
- run:
name: Logs from relayer
working_directory: test-blockchains
command: |
docker container logs relayer
when: always
- run:
name: Logs from dispatcher
working_directory: test-blockchains
command: |
docker container logs dispatcher
when: always
- run:
name: Logs from msgstore
working_directory: test-blockchains
command: |
docker container logs msgstore
when: always
- run:
name: Remove blockchains
working_directory: test-blockchains
command: docker-compose down
when: always
- run:
name: Save test results
command: |
mkdir -p ~/test-results/junit/
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/test-results/junit/ \;
when: always
- store_test_results:
path: ~/test-results
- store_artifacts:
path: ~/test-results/junit
javaIntTestsMachine:
machine:
image: ubuntu-2004:202107-02
resource_class: large
steps:
# The home directory is: /home/circleci/project
# gpact is cloned to: /home/circleci/project/.
# web3j is cloned to: /home/circleci/web3j-abi
- prepare
- run:
name: Build web3j
command: |
# Build our Web3j
cd ../web3j-abi
./gradlew --parallel --stacktrace --info --build-cache installDist
- run:
name: Create Relayer containers
working_directory: services/relayer
command: make docker
- run:
name: Create Message Store container
working_directory: services/message-store
command: make docker
- run:
name: Create and Start blockchains
working_directory: test-blockchains
background: true
command: docker-compose build && docker-compose up
- run: sleep 30
- run:
name: Build and test
command: ./gradlew intTest
- run:
name: Stop blockchains
working_directory: test-blockchains
command: docker-compose stop
when: always
- run:
name: Logs from bc31
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc31node1_1
when: always
- run:
name: Logs from bc32
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc32node1_1
when: always
- run:
name: Logs from bc33
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc33node1_1
when: always
- run:
name: Logs from observer
working_directory: test-blockchains
command: |
docker container logs observer
when: always
- run:
name: Logs from relayer
working_directory: test-blockchains
command: |
docker container logs relayer
when: always
- run:
name: Logs from dispatcher
working_directory: test-blockchains
command: |
docker container logs dispatcher
when: always
- run:
name: Logs from msgstore
working_directory: test-blockchains
command: |
docker container logs msgstore
when: always
- run:
name: Remove blockchains
working_directory: test-blockchains
command: docker-compose down
when: always
- run:
name: Save test results
command: |
mkdir -p ~/test-results/junit/
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/test-results/junit/ \;
when: always
- store_test_results:
path: ~/test-results
- store_artifacts:
path: ~/test-results/junit
typescriptIntTestsMachine:
machine:
image: ubuntu-2004:202107-02
resource_class: large
steps:
# The home directory is: /home/circleci/project
# gpact is cloned to: /home/circleci/project/.
# web3j is cloned to: /home/circleci/web3j-abi
- prepare
- run:
name: Build web3j
command: |
# Build our Web3j
cd ../web3j-abi
./gradlew --parallel --stacktrace --info --build-cache installDist
- run:
name: Create Relayer containers
working_directory: services/relayer
command: make docker
- run:
name: Create Message Store container
working_directory: services/message-store
command: make docker
- run:
name: Create and Start blockchains
working_directory: sdk/js
background: true
command: docker-compose build && docker-compose up
- run:
name: Build Solidity code for use with TypeScript compile
command: ./gradlew build -x test -x intTest -x perfTest
- run:
name: Create environment for testing JS-SDK
working_directory: sdk/js
background: true
command: npm install
- run: sleep 30
- run:
name: Test JS-SDK
working_directory: sdk/js
command: node ./test.js
- run:
name: Stop environment for testing JS-SDK
working_directory: sdk/js
command: docker-compose stop
when: always
- run:
name: Remove blockchains
working_directory: sdk/js
command: docker-compose down
when: always
perfTestsMachine:
machine:
image: ubuntu-2004:202107-02
resource_class: large
steps:
# The home directory is: /home/circleci/project
# gpact is cloned to: /home/circleci/project/.
# web3j is cloned to: /home/circleci/web3j-abi
- prepare
- run:
name: Build web3j
command: |
# Build our Web3j
cd ../web3j-abi
./gradlew --parallel --stacktrace --info --build-cache installDist
- run:
name: Create Relayer containers
working_directory: services/relayer
command: make docker
- run:
name: Create Message Store container
working_directory: services/message-store
command: make docker
- run:
name: Create and Start blockchains
working_directory: test-blockchains
background: true
command: docker-compose build && docker-compose up
- run: sleep 30
- run:
name: Build and test
command: ./gradlew perfTest
- run:
name: Stop blockchains
working_directory: test-blockchains
command: docker-compose stop
when: always
- run:
name: Logs from bc31
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc31node1_1
when: always
- run:
name: Logs from bc32
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc32node1_1
when: always
- run:
name: Logs from bc33
working_directory: test-blockchains
command: |
docker container logs test-blockchains_bc33node1_1
when: always
- run:
name: Logs from observer
working_directory: test-blockchains
command: |
docker container logs observer
when: always
- run:
name: Logs from relayer
working_directory: test-blockchains
command: |
docker container logs relayer
when: always
- run:
name: Logs from dispatcher
working_directory: test-blockchains
command: |
docker container logs dispatcher
when: always
- run:
name: Logs from msgstore
working_directory: test-blockchains
command: |
docker container logs msgstore
when: always
- run:
name: Remove blockchains
working_directory: test-blockchains
command: docker-compose down
when: always
- run:
name: Save test results
command: |
mkdir -p ~/test-results/junit/
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/test-results/junit/ \;
when: always
- store_test_results:
path: ~/test-results
- store_artifacts:
path: ~/test-results/junit
relayer-build:
docker:
- image: cimg/go:1.17.3
environment:
TERM: xterm-256color
COLORTERM: 24bit
steps:
- checkout
- run:
name: Verify checkout
command: |
date -Is
echo; git -P reflog --date=iso
go version
- run:
name: Build production code and test code
command: make buildall
working_directory: ~/project/services/relayer
relayer-test:
machine:
image: ubuntu-2004:202111-01
resource_class: large
steps:
- checkout
- run:
name: Verify checkout
command: |
date -Is
echo; git -P reflog --date=iso
go version
pwd
ls -al
echo GOROOT: $GOROOT
- run:
name: Build relayer docker container
command: make docker
working_directory: services/relayer
- run:
name: Build message store docker container
command: make docker
working_directory: services/message-store
- run:
name: Create and Start blockchains & Relayers
working_directory: services/relayer
background: true
command: docker-compose up
- run: sleep 30
- run:
name: Build test code and execute unit tests
command: make utest itest
working_directory: services/relayer
- run:
name: Stop blockchains & Relayers
working_directory: services/relayer
command: docker-compose stop
when: always
- run:
name: Remove blockchains & Relayers
working_directory: services/relayer
command: docker-compose down
when: always
workflows:
version: 2
default:
jobs:
- relayer-build
- javasdk-build
- relayer-test:
requires:
- relayer-build
- javaUnitTestsMachine:
requires:
- relayer-build
- javasdk-build
- javaIntTestsMachine:
requires:
- relayer-build
- javasdk-build
- perfTestsMachine:
requires:
- relayer-build
- javasdk-build
- typescriptIntTestsMachine:
requires:
- relayer-build
- javasdk-build