-
Notifications
You must be signed in to change notification settings - Fork 7
278 lines (258 loc) · 9.06 KB
/
ci.yml
File metadata and controls
278 lines (258 loc) · 9.06 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
typescript:
name: TypeScript (build + test)
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:
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 ./...
- name: Go SDK tests
run: cd packages/runar-go && go test ./...
- name: Go example tests
run: cd examples/go && go test ./...
- uses: actions/upload-artifact@v4
with:
name: runar-go
path: compilers/go/runar-go
rust:
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
- name: Rust example tests
run: cd examples/rust && cargo test
- name: Rust SDK tests
run: cd packages/runar-rs && cargo test
- uses: actions/upload-artifact@v4
with:
name: runar-rust
path: compilers/rust/target/release/runar-compiler-rust
python:
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
- name: Python SDK tests
run: cd packages/runar-py && python -m pytest
- name: Python example tests
run: cd examples/python && PYTHONPATH=../../packages/runar-py python -m pytest
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
zig-sdk:
name: Zig SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.0
- run: cd packages/runar-zig && zig build test
- name: Zig example tests
run: cd examples/zig && zig build test
ruby:
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
- run: cd packages/runar-rb && bundle exec rspec
- name: Ruby example tests
run: |
cd examples/ruby
bundle install
bundle exec rspec **/*_spec.rb
conformance:
name: Conformance Tests
needs: [typescript, go, rust, python, zig-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
- 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)
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
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
integration:
name: Integration Tests
needs: [typescript, go, rust, python, ruby, zig-compiler, zig-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 compilers/go && go build -o runar-go .
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