-
Notifications
You must be signed in to change notification settings - Fork 1
266 lines (227 loc) · 9.85 KB
/
Copy pathci.yml
File metadata and controls
266 lines (227 loc) · 9.85 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
name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
build-and-test:
name: Build, lint, and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install clang + LLVM tools (opt + lld) required by tin codegen
run: |
sudo apt-get update -qq
sudo apt-get install -y clang lld llvm valgrind libunwind-dev libdw-dev
clang --version
opt --version | head -2
ld.lld --version
- name: Build compiler
run: go build -o tin .
- name: Verify inline channel fast path is generated
run: |
ir=$(./tin ir examples/bench/channel_latency.tin 2>/dev/null)
echo "$ir" | grep -q 'call i32 @_tin_channel_recv_direct' || { echo "FAIL: _tin_channel_recv_direct not found in IR (fast recv path regressed)"; exit 1; }
echo "$ir" | grep -q 'call i32 @_tin_channel_send_blocking' || { echo "FAIL: _tin_channel_send_blocking not found in IR (fast send path regressed)"; exit 1; }
echo "ok: inline channel fast path verified"
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.5.0
args: --timeout=5m
- name: Run example tests
run: ./tin test examples/... -lm
- name: Run fiber example tests
run: |
for f in examples/fibers/*.tin; do
name=$(basename "$f" .tin)
echo "=== $name ==="
./tin build "$f" -o "/tmp/tin_fiber_${name}" -lm
"/tmp/tin_fiber_${name}"
done
- name: Run fiber examples under valgrind
run: |
# stress_10k spawns 10,000 OS threads which exhausts valgrind's memory.
# stress_100 covers the same logic with a valgrind-safe thread count.
# Use build-test so files with `test "..."` blocks run their test runner;
# files with fn{#async} main() build identically to `build`.
for f in \
examples/fibers/auto_yield.tin \
examples/fibers/basic_spawn.tin \
examples/fibers/channel_correctness.tin \
examples/fibers/channel_mpmc.tin \
examples/fibers/channel_pingpong.tin \
examples/fibers/fiber_syntax_edge_cases.tin \
examples/fibers/panic_propagation.tin \
examples/fibers/stress_100.tin \
examples/fibers/sync_mutex.tin \
examples/fibers/yield_cpu.tin; do
name=$(basename "$f" .tin)
echo "=== valgrind: $name ==="
./tin build-test "$f" -o "/tmp/tin_fiber_vg_${name}" -lm
valgrind --error-exitcode=1 --leak-check=full "/tmp/tin_fiber_vg_${name}"
done
- name: Run ARC stress tests (non-fiber) under valgrind
run: |
for f in examples/arc_stress/*.tin; do
[[ "$(basename "$f")" == fiber_* ]] && continue
name=$(basename "$f" .tin)
echo "=== valgrind: $name ==="
./tin build "$f" -o "/tmp/tin_arc_${name}" -lm
valgrind --error-exitcode=1 --leak-check=no "/tmp/tin_arc_${name}"
done
- name: Run ARC stress tests (fiber) without valgrind
# Fiber tests spawn many OS threads; valgrind over multi-threaded
# programs is too slow and causes spurious use-after-free reports
# due to thread scheduling races that do not occur in practice.
# Run natively instead (same approach used for stress_10k above).
run: |
for f in examples/arc_stress/fiber_*.tin; do
name=$(basename "$f" .tin)
echo "=== $name ==="
./tin build "$f" -o "/tmp/tin_arc_${name}" -lm
"/tmp/tin_arc_${name}"
done
- name: Run echo server stress test
run: |
./tin build examples/echo_server/echo_server_bad.tin -o /tmp/echo_server_bad
python3 examples/echo_server/stress_test.py
- name: Run UDP echo server stress test
run: |
./tin build examples/udp_echo_server/udp_echo_server.tin -o /tmp/udp_echo_server -lm
TIN_UDP_SERVER=/tmp/udp_echo_server python3 examples/udp_echo_server/stress_test.py
- name: Run Unix socket echo server stress test
run: |
./tin build examples/unix_echo_server/unix_echo_server.tin -o /tmp/unix_echo_server -lm
TIN_UNIX_SERVER=/tmp/unix_echo_server python3 examples/unix_echo_server/stress_test.py
- name: Run I/O stress tests under valgrind
# Uses build-test so the same binary that runs under `tin test` is
# checked for memory errors. --leak-check=no matches the policy used
# for all other fiber tests (fibers use OS threads; leak accounting
# across thread stacks produces false positives).
run: |
for f in examples/io_stress/*.tin; do
name=$(basename "$f" .tin)
echo "=== valgrind: $name ==="
./tin build-test "$f" -o "/tmp/tin_io_${name}.test" -lm
valgrind --error-exitcode=1 --leak-check=no "/tmp/tin_io_${name}.test"
done
build-and-test-arm64:
name: Build and test (arm64)
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install clang + LLVM tools (opt + lld) + valgrind
run: |
sudo apt-get update -qq
sudo apt-get install -y clang lld llvm valgrind libunwind-dev libdw-dev
clang --version
opt --version | head -2
ld.lld --version
- name: Build compiler
run: go build -o tin .
- name: Verify inline channel fast path is generated
run: |
ir=$(./tin ir examples/bench/channel_latency.tin 2>/dev/null)
echo "$ir" | grep -q 'call i32 @_tin_channel_recv_direct' || { echo "FAIL: _tin_channel_recv_direct not found in IR (fast recv path regressed)"; exit 1; }
echo "$ir" | grep -q 'call i32 @_tin_channel_send_blocking' || { echo "FAIL: _tin_channel_send_blocking not found in IR (fast send path regressed)"; exit 1; }
echo "ok: inline channel fast path verified"
- name: Run example tests
run: ./tin test examples/... -lm
- name: Run fiber example tests
run: |
for f in examples/fibers/*.tin; do
name=$(basename "$f" .tin)
echo "=== $name ==="
./tin build "$f" -o "/tmp/tin_fiber_${name}" -lm
"/tmp/tin_fiber_${name}"
done
- name: Run fiber examples under valgrind
run: |
for f in \
examples/fibers/auto_yield.tin \
examples/fibers/basic_spawn.tin \
examples/fibers/channel_correctness.tin \
examples/fibers/channel_mpmc.tin \
examples/fibers/channel_pingpong.tin \
examples/fibers/fiber_syntax_edge_cases.tin \
examples/fibers/panic_propagation.tin \
examples/fibers/stress_100.tin \
examples/fibers/sync_mutex.tin \
examples/fibers/yield_cpu.tin; do
name=$(basename "$f" .tin)
echo "=== valgrind: $name ==="
./tin build-test "$f" -o "/tmp/tin_fiber_vg_${name}" -lm
valgrind --error-exitcode=1 --leak-check=full "/tmp/tin_fiber_vg_${name}"
done
- name: Run ARC stress tests (non-fiber) under valgrind
run: |
for f in examples/arc_stress/*.tin; do
[[ "$(basename "$f")" == fiber_* ]] && continue
name=$(basename "$f" .tin)
echo "=== valgrind: $name ==="
./tin build "$f" -o "/tmp/tin_arc_${name}" -lm
valgrind --error-exitcode=1 --leak-check=no "/tmp/tin_arc_${name}"
done
- name: Run ARC stress tests (fiber) without valgrind
run: |
for f in examples/arc_stress/fiber_*.tin; do
name=$(basename "$f" .tin)
echo "=== $name ==="
./tin build "$f" -o "/tmp/tin_arc_${name}" -lm
"/tmp/tin_arc_${name}"
done
- name: Run echo server stress test
run: |
./tin build examples/echo_server/echo_server_bad.tin -o /tmp/echo_server_bad
python3 examples/echo_server/stress_test.py
- name: Run UDP echo server stress test
run: |
./tin build examples/udp_echo_server/udp_echo_server.tin -o /tmp/udp_echo_server -lm
TIN_UDP_SERVER=/tmp/udp_echo_server python3 examples/udp_echo_server/stress_test.py
- name: Run Unix socket echo server stress test
run: |
./tin build examples/unix_echo_server/unix_echo_server.tin -o /tmp/unix_echo_server -lm
TIN_UNIX_SERVER=/tmp/unix_echo_server python3 examples/unix_echo_server/stress_test.py
- name: Run I/O stress tests under valgrind
run: |
for f in examples/io_stress/*.tin; do
name=$(basename "$f" .tin)
echo "=== valgrind: $name ==="
./tin build-test "$f" -o "/tmp/tin_io_${name}.test" -lm
valgrind --error-exitcode=1 --leak-check=no "/tmp/tin_io_${name}.test"
done
build-and-test-macos:
name: Build and test (macOS arm64)
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install LLVM (opt, llc, ld64.lld)
run: |
brew install llvm
echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH
- name: Build compiler
run: go build -o tin .
- name: Run example tests
run: ./tin test examples/...
- name: Run stdlib tests
run: ./tin test stdlib/...