-
Notifications
You must be signed in to change notification settings - Fork 267
355 lines (324 loc) · 11.1 KB
/
build_and_test.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
name: Build and Test
on:
push:
branches:
- '**'
pull_request:
types: [opened, reopened, ready_for_review]
branches:
- '**'
jobs:
# build:
# runs-on: ubuntu-latest
# container:
# image: openjdk:8-jdk
# env:
# _JAVA_OPTIONS: "-Xmx3G -Xms2G"
# defaults:
# run:
# working-directory: .
# steps:
# - uses: actions/checkout@v2
# - name: Setup System Tools
# run: |
# apt update -y
# apt install -y gnupg2 curl
# - name: Install Node.js
# run: |
# curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
# apt-get install -y nodejs
# - name: Check Node.js version
# run: node --version
# - name: Verify files
# run: |
# curl -sSL https://secchannel.rsk.co/SUPPORT.asc | gpg2 --import -
# gpg2 --verify SHA256SUMS.asc && sha256sum --check SHA256SUMS.asc
#
# - uses: actions/cache@v4
# name: Cache Gradle
# with:
# path: |
# .gradle/caches
# gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-
#
# - uses: actions/cache@v4
# name: Cache build
# with:
# path: |
# build
# key: ${{ runner.os }}-build-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-build-
#
# - name: Build
# run: |
# ./configure.sh
# ./gradlew --no-daemon dependencies
# ./gradlew --no-daemon --stacktrace build -x test
# ls -la ./gradle/wrapper/gradle-wrapper.jar
#
# sonarqube:
# needs: build
# runs-on: ubuntu-latest
# container:
# image: eclipse-temurin:17-jdk
# defaults:
# run:
# working-directory: .
# steps:
# - uses: actions/checkout@v2
# - name: Run SonarQube analysis
# run: |
# echo "Installing git"
# apt-get update && apt-get install -yqq git
# extra_flags=""
# echo "Get GH event type"
# event_name="${{ github.event_name }}"
# if [ "$event_name" = "pull_request" ]; then
# echo "Setting up PR analysis"
# echo "switch to master"
# git branch -f master origin/master
# pr_number=${{ github.event.pull_request.number }}
# echo "PR number: $pr_number"
# extra_flags="-Dsonar.pullrequest.base=master -Dsonar.pullrequest.branch=${{ github.head_ref }} -Dsonar.pullrequest.key=$pr_number"
# echo "PR analysis flags: $extra_flags"
# else
# echo "Setting up branch analysis"
# extra_flags="-Dsonar.branch.name=master"
# echo "Branch analysis flags: $extra_flags"
# fi
#
# sonar_url=${{ secrets.SONAR_URL }}
# sonar_token=${{ secrets.SONAR_TOKEN }}
# echo "Event name: $event_name"
# echo "Sonar URL: $sonar_url"
#
# echo "Running SonarQube analysis"
# ./configure.sh
# ./gradlew sonarqube --no-daemon -x build -x test $extra_flags \
# -Dsonar.organization=rsksmart -Dsonar.host.url="$sonar_url" -Dsonar.login="$sonar_token"
#
# tests:
# needs: build
# runs-on: ubuntu-latest
# container:
# image: openjdk:8-jdk
# defaults:
# run:
# working-directory: .
# steps:
# - uses: actions/checkout@v2
#
# - name: Setup System Tools
# run: |
# apt update -y
# apt install -y curl
# - name: Install Node.js
# run: |
# curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
# apt-get install -y nodejs
# - name: Check Node.js version
# run: node --version
#
# - uses: actions/cache@v4
# name: Restore gradle cache
# with:
# path: |
# .gradle/caches
# gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-
#
# - name: Get Gradle jar
# run: |
# ./configure.sh
#
# - name: Unit tests
# run: |
# chmod +x ./gradlew
# ./gradlew --no-daemon --stacktrace test
# - name: Integration tests
# run: |
# chmod +x ./gradlew
# ./gradlew --no-daemon --stacktrace test
#
# - name: Save test results
# run: |
# mkdir -p ~/junit/
# find rskj-core/build/test-results -type f -name "*.xml" -exec cp {} ~/junit/ \;
# if: always()
mining-tests:
# needs: build
runs-on: ubuntu-latest
container:
image: openjdk:8-jdk
defaults:
run:
working-directory: .
services:
bitcoind01:
image: kylemanna/bitcoind:latest
volumes:
- ${{ github.workspace }}/.github/mining-test/bitcoind01:/bitcoin/.bitcoin/
env:
DISABLEWALLET: "0"
ports:
- 31591:31591
- 32591:32591
options: >-
--entrypoint "/usr/local/bin/bitcoind"
--name bitcoind01
bitcoind02:
image: kylemanna/bitcoind:latest
volumes:
- ${{ github.workspace }}/.github/mining-test/bitcoind02:/bitcoin/.bitcoin/
env:
DISABLEWALLET: "0"
ports:
- 31592:31592
- 32592:32592
options: >-
--entrypoint "/usr/local/bin/bitcoind"
--name bitcoind02
steps:
- uses: actions/checkout@v2
- name: Setup System Tools
run: |
apt-get update -y
apt-get install -y jq lsof
- name: Restart bitcoin nodes
uses: docker://docker
with:
args: docker restart bitcoind01 bitcoind02
- name: Attach bitcoind01 container to the network
uses: docker://docker
with:
args: docker network connect bridge bitcoind01
- name: Attach bitcoind02 container to the network
uses: docker://docker
with:
args: docker network connect bridge bitcoind02
- name: Check that bitcoind01 and bitcoind02 are attached to the network
uses: docker://docker
with:
args: |
docker network inspect bridge
- name: Verify bitcoind01 and bitcoind02 are running
uses: docker://docker
with:
args: |
docker ps
- name: Verify all required ports are used by bitcoind01 and bitcoind02
shell: bash
run: |
ports=(31591 32591 31592 32592)
for port in "${ports[@]}"; do
if ! lsof -i:$port -sTCP:LISTEN > /dev/null; then
echo "Error: No process is listening on port $port"
exit 1
fi
done
echo "Success: All specified ports are being listened to."
- name: Test bitcoin nodes
run: |
echo Test bitcoin node 1
curl -v -s -u admin:admin --data-binary '{"jsonrpc":"1.0","id":"curltext","method":"getblockchaininfo","params":[]}' -H 'content-type:text/plain;' http://bitcoind01:32591
echo Test bitcoin node 2
curl -v -s -u admin:admin --data-binary '{"jsonrpc":"1.0","id":"curltext","method":"getblockchaininfo","params":[]}' -H 'content-type:text/plain;' http://bitcoind02:32592
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '12'
- name: Check Node.js version
run: node --version
- name: Checkout Mining Integration Tests Repository
uses: actions/checkout@v2
with:
repository: rsksmart/mining-integration-tests
# ref: ${{ secrets.MINING_INTEGRATION_TESTS_REF }}
# token: ${{ secrets.GITHUB_TOKEN }}
path: mining-integration-tests
# - uses: actions/cache@v2
# with:
# path: |
# node_modules
# key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-node-
- name: Install Mining Integration Tests dependencies
working-directory: mining-integration-tests
run: |
npm install
#
# - name: Start Bitcoin nodes
# run: |
# docker run -itd bitcoind01 /usr/local/bin/bitcoind -printtoconsole -regtest -debug -server -listen -port=31591 -connect=localhost:31592 -rpcbind=0.0.0.0:32591 -rpcallowip=0.0.0.0/0 -rpcuser=admin -rpcpassword=admin
# docker run -itd bitcoind02 /usr/local/bin/bitcoind -printtoconsole -regtest -debug -server -listen -port=31592 -connect=localhost:31591 -rpcbind=0.0.0.0:32591 -rpcallowip=0.0.0.0/0 -rpcuser=admin -rpcpassword=admin
# - name: Start Bitcoin nodes
# run: |
# docker run -d --name bitcoind01 -p 31591:31591 --entrypoint "/usr/local/bin/bitcoind" kylemanna/bitcoind:latest -printtoconsole -regtest -debug -server -listen -port=31591 -connect=localhost:31592 -rpcbind=0.0.0.0:32591 -rpcallowip=0.0.0.0/0 -rpcuser=admin -rpcpassword=admin
# docker run -d --name bitcoind02 -p 31592:31592 --entrypoint "/usr/local/bin/bitcoind" kylemanna/bitcoind:latest -printtoconsole -regtest -debug -server -listen -port=31592 -connect=localhost:31591 -rpcbind=0.0.0.0:32592 -rpcallowip=0.0.0.0/0 -rpcuser=admin -rpcpassword=admin
#
#
- name: Generate BTC blocks
working-directory: mining-integration-tests
run: |
node generateBtcBlocks.js
- name: Setup Java JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Verify Java installation
run: java -version
# - uses: actions/cache@v4
# name: Restore gradle cache
# with:
# path: |
# .gradle/caches
# gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-
#
- name: Get Gradle jar
run: |
./configure.sh
# - uses: actions/cache@v4
# name: Restore build
# with:
# path: |
# rsk-core/build
# key: ${{ runner.os }}-build-${{ hashFiles('build') }}
# restore-keys: |
# ${{ runner.os }}-build-
- name: Build
run: |
./configure.sh
./gradlew --no-daemon dependencies
./gradlew --no-daemon --stacktrace build -x test
ls -la ./gradle/wrapper/gradle-wrapper.jar
# - name: Start RSKj
# run: |
#
# - name: Run Mining Integration Tests
# run: |
# chmod +x .github/mining-test/run.sh
# ./.github/mining-test/run.sh
- name: Run Mining Integration Tests
working-directory: mining-integration-tests
run: |
npm test
- name: Stop RSKj
if: always()
run: |
kill $rskpid
- name: Stop and Remove Docker Containers
if: always()
run: |
/usr/bin/docker stop bitcoind01 bitcoind02
/usr/bin/docker rm bitcoind01 bitcoind02