-
Notifications
You must be signed in to change notification settings - Fork 60
291 lines (238 loc) · 9.84 KB
/
Copy pathci.yml
File metadata and controls
291 lines (238 loc) · 9.84 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
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
env:
CARGO_TERM_COLOR: always
jobs:
lint-test:
name: Lint & Unit Tests
runs-on:
group: hf-mount-ci-pub
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Configure internal registries
run: curl -sSL https://registries.huggingface.tech/setup.sh | bash
# Pin nightly so rustfmt rules don't drift between CI and contributor machines.
# Bump together with the nightly used in `make fmt` / contributor setup.
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2026-04-22
components: rustfmt
- uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0
with:
components: clippy
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev
- name: Format check
run: cargo +nightly-2026-04-22 fmt --check
- name: Clippy (no features)
run: cargo clippy -- -D warnings
- name: Clippy (NFS)
run: cargo clippy --features nfs -- -D warnings
- name: Clippy (FUSE)
run: cargo clippy --features fuse -- -D warnings
- name: Clippy (all)
run: cargo clippy --features fuse,nfs -- -D warnings
- name: Unit tests
run: cargo test --lib --features fuse,nfs
smoke-test:
name: Smoke Tests (FUSE + NFS)
runs-on:
group: hf-mount-ci-pub
needs: lint-test
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_ENDPOINT: https://huggingface.co
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Configure internal registries
run: curl -sSL https://registries.huggingface.tech/setup.sh | bash
- uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev nfs-common
echo 'user_allow_other' | sudo tee -a /etc/fuse.conf
- name: Build release binaries
run: cargo build --release --features fuse,nfs
- name: Integration tests (buckets)
run: cargo test --release --test fuse_ops --test nfs_ops -- --test-threads=1 --nocapture
- name: Integration tests (repo mount)
run: unset HF_TOKEN && cargo test --release --test repo_ops -- --test-threads=1 --nocapture
fsx:
name: fsx (data integrity)
runs-on:
group: hf-mount-ci-pub
needs: lint-test
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Configure internal registries
run: curl -sSL https://registries.huggingface.tech/setup.sh | bash
- uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev
echo 'user_allow_other' | sudo tee -a /etc/fuse.conf
- name: Build
run: cargo build --release --features fuse,nfs
- name: fsx
timeout-minutes: 10
run: cargo test --release --test fsx -- --test-threads=1 --nocapture
xfstests:
name: xfstests (filesystem exerciser)
runs-on:
group: hf-mount-ci-pub-m5dn-24xlarge
needs: lint-test
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Configure internal registries
run: curl -sSL https://registries.huggingface.tech/setup.sh | bash
- uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev xfsprogs xfsdump attr libaio-dev uuid-dev acl bc
echo 'user_allow_other' | sudo tee -a /etc/fuse.conf
- name: Build
run: cargo build --release --features fuse,nfs
- name: xfstests
timeout-minutes: 45
run: cargo test --release --test xfstests -- --test-threads=1 --nocapture
pjdfstest:
name: POSIX Compliance (pjdfstest)
runs-on:
group: hf-mount-ci-pub
needs: lint-test
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_ENDPOINT: https://huggingface.co
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Configure internal registries
run: curl -sSL https://registries.huggingface.tech/setup.sh | bash
- uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev autoconf automake gcc make perl
echo 'user_allow_other' | sudo tee -a /etc/fuse.conf
- name: Build release binaries
run: cargo build --release --features fuse,nfs
- name: Run pjdfstest
timeout-minutes: 10
run: |
set -o pipefail
cargo test --release --test pjdfstest -- --nocapture 2>&1 | tee pjdfstest_output.txt
- name: Post pjdfstest results
if: github.event_name == 'pull_request'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
CLEAN=$(sed 's/\x1b\[[0-9;]*m//g' pjdfstest_output.txt)
TABLES=$(echo "$CLEAN" | awk '
/^=====*$/ { inside=!inside; print; next }
inside { print }
')
if [ -z "$TABLES" ]; then
echo "No pjdfstest table found in output"
exit 0
fi
PR="${{ github.event.pull_request.number }}"
MARKER="<!-- pjdfstest-results -->"
# Sanitize TABLES content by encoding it as JSON string
TABLES_JSON=$(jq -Rs . <<< "$TABLES")
BODY=$(jq -rn \
--arg marker "$MARKER" \
--argjson tables "$TABLES_JSON" \
'{marker: $marker, content: ("## POSIX Compliance (pjdfstest)\n\n```\n" + $tables + "\n```")} | .marker + "\n" + .content')
COMMENT_ID=$(gh api "repos/${{ github.repository }}/issues/${PR}/comments" \
--jq ".[] | select(.body | startswith(\"${MARKER}\")) | .id" | head -1)
if [ -n "$COMMENT_ID" ]; then
gh api "repos/${{ github.repository }}/issues/comments/${COMMENT_ID}" \
-X PATCH -F body="$BODY"
echo "Updated existing comment $COMMENT_ID"
else
gh pr comment "$PR" --body "$BODY"
echo "Created new comment"
fi
bench:
name: Benchmarks
runs-on:
group: hf-mount-ci-pub
needs: lint-test
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_ENDPOINT: https://huggingface.co
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Configure internal registries
run: curl -sSL https://registries.huggingface.tech/setup.sh | bash
- uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev nfs-common
echo 'user_allow_other' | sudo tee -a /etc/fuse.conf
- name: Build release binaries
run: cargo build --release --features fuse,nfs
- name: Install fio
run: sudo apt-get install -y fio
- name: Run benchmarks
timeout-minutes: 10
run: cargo test --release --test bench --test fio_bench -- --nocapture 2>&1 | tee bench_output.txt
- name: Post benchmark results
if: github.event_name == 'pull_request'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Strip ANSI codes, then extract only ==== delimited blocks
CLEAN=$(sed 's/\x1b\[[0-9;]*m//g' bench_output.txt)
TABLES=$(echo "$CLEAN" | awk '
/^=====*$/ { inside=!inside; print; next }
inside { print }
')
if [ -z "$TABLES" ]; then
echo "No benchmark table found in output"
exit 0
fi
PR="${{ github.event.pull_request.number }}"
MARKER="<!-- bench-results -->"
# Sanitize TABLES content by encoding it as JSON string
TABLES_JSON=$(jq -Rs . <<< "$TABLES")
BODY=$(jq -rn \
--arg marker "$MARKER" \
--argjson tables "$TABLES_JSON" \
'{marker: $marker, content: ("## Benchmark Results\n\n```\n" + $tables + "\n```")} | .marker + "\n" + .content')
# Find existing comment with our marker
COMMENT_ID=$(gh api "repos/${{ github.repository }}/issues/${PR}/comments" \
--jq ".[] | select(.body | startswith(\"${MARKER}\")) | .id" | head -1)
if [ -n "$COMMENT_ID" ]; then
gh api "repos/${{ github.repository }}/issues/comments/${COMMENT_ID}" \
-X PATCH -F body="$BODY"
echo "Updated existing comment $COMMENT_ID"
else
gh pr comment "$PR" --body "$BODY"
echo "Created new comment"
fi