-
Notifications
You must be signed in to change notification settings - Fork 7
431 lines (402 loc) · 14.5 KB
/
ci.yml
File metadata and controls
431 lines (402 loc) · 14.5 KB
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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
# ---------------------------------------------------------------------------
# Compilers — build, unit test, upload artifacts
# ---------------------------------------------------------------------------
ts-compiler:
name: TypeScript Compiler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- uses: actions/setup-go@v5
with:
go-version: '1.24'
cache-dependency-path: compilers/go/go.sum
- uses: dtolnay/rust-toolchain@stable
- name: Build Rust compiler (for cross-compiler tests)
run: cd compilers/rust && cargo build --release
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run test
- name: Example tests (TS + Sol + Move)
run: npx vitest run examples/ts/ examples/sol/ examples/move/
- run: pnpm run typecheck
go-compiler:
name: Go Compiler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24'
cache-dependency-path: compilers/go/go.sum
- run: cd compilers/go && go build ./...
- run: cd compilers/go && go build -o runar-go .
- run: cd compilers/go && go test -race -v ./...
- uses: actions/upload-artifact@v4
with:
name: runar-go
path: compilers/go/runar-go
rust-compiler:
name: Rust Compiler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cd compilers/rust && cargo build --release
- run: cd compilers/rust && cargo test
- uses: actions/upload-artifact@v4
with:
name: runar-rust
path: compilers/rust/target/release/runar-compiler-rust
python-compiler:
name: Python Compiler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install pytest
- run: cd compilers/python && python -m pytest tests/ -v
zig-compiler:
name: Zig Compiler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.0
- run: cd compilers/zig && zig build test
- name: Zig conformance tests
run: cd compilers/zig && zig build conformance
- name: Build release binary
run: cd compilers/zig && zig build -Doptimize=ReleaseFast
- uses: actions/upload-artifact@v4
with:
name: runar-zig
path: compilers/zig/zig-out/bin/runar-zig
ruby-compiler:
name: Ruby Compiler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- name: Ruby compiler conformance (IR → hex)
run: |
fail=0
for test in conformance/tests/*/expected-ir.json; do
dir=$(dirname "$test")
name=$(basename "$dir")
expected=$(tr -d '[:space:]' < "$dir/expected-script.hex" | tr '[:upper:]' '[:lower:]')
actual=$(ruby compilers/ruby/bin/runar-compiler-ruby --ir "$test" --hex --disable-constant-folding 2>&1 | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]')
if [ "$expected" = "$actual" ]; then
echo "PASS $name"
else
echo "FAIL $name"
fail=1
fi
done
exit $fail
- name: Ruby compiler source conformance (.runar.ts → hex)
run: |
fail=0
for dir in conformance/tests/*/; do
name=$(basename "$dir")
ts_file="$dir/$name.runar.ts"
[ -f "$ts_file" ] || continue
expected=$(tr -d '[:space:]' < "$dir/expected-script.hex" | tr '[:upper:]' '[:lower:]')
actual=$(ruby compilers/ruby/bin/runar-compiler-ruby --source "$ts_file" --hex --disable-constant-folding 2>&1 | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]')
if [ "$expected" = "$actual" ]; then
echo "PASS $name (.runar.ts)"
else
echo "FAIL $name (.runar.ts)"
fail=1
fi
done
exit $fail
- name: Ruby compiler source conformance (.runar.rb → hex)
run: |
fail=0
for dir in conformance/tests/*/; do
name=$(basename "$dir")
rb_file=$(find "$dir" -name "*.runar.rb" | head -1)
[ -n "$rb_file" ] || continue
expected=$(tr -d '[:space:]' < "$dir/expected-script.hex" | tr '[:upper:]' '[:lower:]')
actual=$(ruby compilers/ruby/bin/runar-compiler-ruby --source "$rb_file" --hex --disable-constant-folding 2>&1 | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]')
if [ "$expected" = "$actual" ]; then
echo "PASS $name (.runar.rb)"
else
echo "FAIL $name (.runar.rb)"
fail=1
fi
done
exit $fail
# ---------------------------------------------------------------------------
# SDKs — package tests + example tests
# ---------------------------------------------------------------------------
go-sdk:
name: Go SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24'
cache-dependency-path: packages/runar-go/go.sum
- name: SDK tests
run: cd packages/runar-go && go test ./...
- name: Example tests
run: cd examples/go && go test ./...
rust-sdk:
name: Rust SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: SDK tests
run: cd packages/runar-rs && cargo test
- name: Example tests
run: cd examples/rust && cargo test
python-sdk:
name: Python SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install pytest
- name: SDK tests
run: cd packages/runar-py && python -m pytest
- name: Example tests
run: cd examples/python && PYTHONPATH=../../packages/runar-py python -m pytest
zig-sdk:
name: Zig SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.0
- name: SDK tests
run: cd packages/runar-zig && zig build test
- name: Example tests
run: cd examples/zig && zig build test
ruby-sdk:
name: Ruby SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
working-directory: packages/runar-rb
- name: SDK tests
run: cd packages/runar-rb && bundle exec rspec
- name: Example tests
run: |
cd examples/ruby
bundle install
bundle exec rspec **/*_spec.rb
# ---------------------------------------------------------------------------
# Conformance — cross-compiler + SDK output
# ---------------------------------------------------------------------------
conformance:
name: Conformance Tests
needs: [ts-compiler, go-compiler, rust-compiler, python-compiler, zig-compiler, ruby-compiler]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: runar-go
- uses: actions/download-artifact@v4
with:
name: runar-rust
- uses: actions/download-artifact@v4
with:
name: runar-zig
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- run: chmod +x runar-go runar-compiler-rust runar-zig
- name: Run conformance tests
run: |
fail=0
for test in conformance/tests/*/expected-ir.json; do
dir=$(dirname "$test")
name=$(basename "$dir")
echo -n "=== $name === "
go_hex=$(./runar-go --ir "$test" --hex)
rust_hex=$(./runar-compiler-rust --ir "$test" --hex)
zig_hex=$(./runar-zig compile-ir "$test" --hex 2>/dev/null | head -1)
ruby_hex=$(ruby compilers/ruby/bin/runar-compiler-ruby --ir "$test" --hex --disable-constant-folding 2>&1 | tr -d '[:space:]')
if [ "$go_hex" != "$rust_hex" ]; then
echo "MISMATCH Go vs Rust"
fail=1
elif [ "$go_hex" != "$zig_hex" ]; then
echo "MISMATCH Go vs Zig"
fail=1
elif [ "$go_hex" != "$ruby_hex" ]; then
echo "MISMATCH Go vs Ruby"
fail=1
else
echo "OK (${#go_hex} hex chars)"
fi
done
exit $fail
- name: Ruby format conformance (source → hex)
run: |
fail=0
for dir in conformance/tests/*/; do
name=$(basename "$dir")
rb_file="$dir/$name.runar.rb"
[ -f "$rb_file" ] || continue
expected_file="$dir/expected-script.hex"
[ -f "$expected_file" ] || continue
expected=$(tr -d '[:space:]' < "$expected_file" | tr '[:upper:]' '[:lower:]')
go_hex=$(./runar-go --source "$rb_file" --hex --disable-constant-folding 2>/dev/null | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]')
rust_hex=$(./runar-compiler-rust --source "$rb_file" --hex --disable-constant-folding 2>/dev/null | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]')
if [ "$go_hex" != "$rust_hex" ]; then
echo "MISMATCH $name: Go vs Rust differ"
fail=1
elif [ "$go_hex" != "$expected" ]; then
echo "MISMATCH $name: output differs from golden file"
fail=1
else
echo "OK $name (.runar.rb)"
fi
done
exit $fail
sdk-conformance:
name: SDK Output Conformance
needs: [ts-compiler, go-sdk, rust-sdk, python-sdk, zig-sdk, ruby-sdk]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- uses: actions/setup-go@v5
with:
go-version: '1.24'
cache-dependency-path: packages/runar-go/go.sum
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
working-directory: packages/runar-rb
- uses: mlugg/setup-zig@v2
with:
version: 0.15.0
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- name: Build Rust SDK tool
run: cd conformance/sdk-output/tools/rs-sdk-tool && cargo build --release
- name: Build Zig SDK tool
run: cd conformance/sdk-output/tools/zig-sdk-tool && zig build -Doptimize=ReleaseFast
- name: Run SDK output conformance (39 contracts x 6 SDKs)
run: cd conformance/sdk-output && npx tsx runner/sdk-runner.ts
# ---------------------------------------------------------------------------
# Integration — regtest node tests
# ---------------------------------------------------------------------------
integration:
name: Integration Tests
needs:
- ts-compiler
- go-compiler
- rust-compiler
- python-compiler
- zig-compiler
- zig-sdk
- ruby-compiler
- ruby-sdk
runs-on: ubuntu-latest
env:
RPC_URL: http://localhost:18332
RPC_USER: regtest
RPC_PASS: regtest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- uses: actions/setup-go@v5
with:
go-version: '1.24'
cache-dependency-path: compilers/go/go.sum
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install pytest bsv-sdk
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
working-directory: integration/ruby
- uses: mlugg/setup-zig@v2
with:
version: 0.15.0
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- name: Pre-create regtest node config with test credentials
run: |
mkdir -p integration/regtest-data/n1
printf '%s\n' \
'port=18333' 'rpcbind=0.0.0.0' 'rpcport=18332' \
'rpcuser=regtest' 'rpcpassword=regtest' 'rpcallowip=0.0.0.0/0' \
'dnsseed=0' 'listenonion=0' 'listen=1' 'server=1' 'rest=1' 'regtest=1' \
'usecashaddr=0' 'txindex=1' 'excessiveblocksize=1000000000' \
'maxstackmemoryusageconsensus=100000000' 'maxscriptsizepolicy=0' \
'maxscriptnumlengthpolicy=0' 'maxstackmemoryusagepolicy=100000000' \
'maxtxsizepolicy=0' 'genesisactivationheight=1' 'minminingtxfee=0.00000001' \
> integration/regtest-data/n1/bitcoin.conf
- name: Start BSV regtest node
run: cd integration && ./regtest.sh start
- name: Go integration tests
run: cd integration/go && go test -tags integration -v -timeout 600s
- name: TypeScript integration tests
run: cd integration/ts && npx vitest run
- name: Rust integration tests
run: cd integration/rust && cargo test --release -- --ignored
timeout-minutes: 10
- name: Python integration tests
run: cd integration/python && PYTHONPATH=../../compilers/python:../../packages/runar-py pytest -v
- name: Ruby integration tests
run: cd integration/ruby && bundle exec rspec --format documentation
- name: Zig integration tests
run: cd integration/zig && zig build test
timeout-minutes: 5
- name: Ruby end-to-end example tests
run: |
cd end2end-example/ruby
bundle install
bundle exec rspec price_bet_spec.rb --format documentation
- name: Stop regtest node
if: always()
run: cd integration && ./regtest.sh stop