-
Notifications
You must be signed in to change notification settings - Fork 267
251 lines (219 loc) · 7.15 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
name: Build and Test
on:
push:
branches:
- '**'
pull_request:
types: [opened, reopened]
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
container:
image: openjdk:8-jdk
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Setup System Tools
run: |
apt update -y
apt install -y gnupg2 curl
- 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
id: cache-gradle
with:
path: |
.gradle/caches
gradle/wrapper
rskj-core/build
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'rskj-core/src/main/resources/version.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Get gradle wrapper and build dependencies
if: steps.cache-gradle.outputs.cache-hit != 'true'
run: |
./configure.sh
./gradlew --no-daemon dependencies
- name: Build
run: |
./gradlew --no-daemon --stacktrace build -x test
- name: Archive build artifacts
uses: actions/upload-artifact@v4
with:
name: build-files
path: |
rskj-core/build
- name: List the built jars
run: |
find rskj-core/build/libs/ -name "*.jar"
sonarqube:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- uses: actions/cache@v4
name: Restore Gradle cache
with:
path: |
.gradle/caches
gradle/wrapper
rskj-core/build
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'rskj-core/src/main/resources/version.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-files
path: |
rskj-core/build
- name: List the built artefacts
run: |
tree rskj-core/build -L 2
- name: Run SonarQube analysis
run: |
extra_flags=""
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
git branch -f master origin/master
pr_number==${{ github.event.pull_request.number }}
extra_flags="-Dsonar.pullrequest.base=master
-Dsonar.pullrequest.branch=${{ github.head_ref }}
-Dsonar.pullrequest.key=$pr_number"
else
extra_flags="-Dsonar.branch.name=master"
fi
./gradlew sonarqube --no-daemon -x build -x test \
$extra_flags \
-Dsonar.organization=rsksmart \
-Dsonar.host.url="https://sonarcloud.io" \
-Dsonar.token="${{ secrets.SONAR_TOKEN }}"
tests:
needs: build
runs-on: ubuntu-latest
container:
image: openjdk:8-jdk
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Setup System Tools
run: |
apt update -y
apt install -y curl
- 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: Unit tests
run: |
./gradlew --no-daemon --stacktrace test
- name: Integration tests
run: |
./gradlew --no-daemon --stacktrace integrationTest
mining-tests:
needs: build
runs-on: ubuntu-latest
services:
bitcoind1:
image: ghcr.io/rsksmart/rskj/mit_bitcoind1:latest
ports:
- 8331:8331
- 31591:31591
- 32591:32591
options: --name bitcoind1
bitcoind2:
image: ghcr.io/rsksmart/rskj/mit_bitcoind2:latest
ports:
- 8332:8332
- 31592:31592
- 32592:32592
options: --name bitcoind2
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '12.x'
- name: Check Node.js version
run: node --version
- name: Checkout Mining Integration Tests Repository
uses: actions/checkout@v4
with:
repository: rsksmart/mining-integration-tests
ref: ${{ secrets.MINING_INTEGRATION_TESTS_REF }}
token: ${{ secrets.GITHUB_TOKEN }}
path: mining-integration-tests
- name: Install Mining Integration Tests dependencies
working-directory: mining-integration-tests
run: |
npm ci
- name: Change mining-integration-tests bitcoind url in config.json to localhost
working-directory: mining-integration-tests
run: |
sed -i 's/bitcoind01/localhost/g' config.json
- name: Generate BTC blocks
working-directory: mining-integration-tests
run: |
node --unhandled-rejections=strict generateBtcBlocks.js
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- 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: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-files
path: |
rskj-core/build
- name: List the built jars
run: |
find rskj-core/build/libs/ -name "*.jar"
- name: Start RSKj and Run Tests
working-directory: mining-integration-tests
run: |
version=$(tr -d "'\"" < ../rskj-core/src/main/resources/version.properties \
| cut -d = -f 2- | paste -sd - -)
echo "Using RskJ version $version at ../rskj-core/build/libs/rskj-core-$version-all.jar"
java -Drsk.conf.file=./rsk-integration-test.conf -cp ../rskj-core/build/libs/rskj-core-"$version"-all.jar co.rsk.Start --regtest & rskpid=$!
export tries=0
export MAX_TRIES=10
until nc -z 127.0.0.1 4444 || [ $tries -eq $MAX_TRIES ] || ! kill -0 $rskpid 2>/dev/null; do
echo "Waiting for RskJ..."
export tries=$((tries+1))
sleep 1
done
if ! kill -0 $rskpid 2>/dev/null; then
echo "RskJ process has died"
exit 1
fi
npm test
kill -9 $rskpid