-
Notifications
You must be signed in to change notification settings - Fork 398
250 lines (202 loc) · 6.82 KB
/
pullrequest.yml
File metadata and controls
250 lines (202 loc) · 6.82 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
name: Pull Request
on:
- pull_request
- workflow_dispatch
permissions:
contents: read
jobs:
worker-build:
strategy:
matrix:
platform: ['ubuntu-latest', 'windows-latest']
name: Build worker-build
runs-on: ${{ matrix.platform }}
steps:
- uses: dtolnay/rust-toolchain@1.87.0
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: ~/.cargo/registry ~/.cargo/git target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- run: cargo test -p worker-build
- run: cargo build -p worker-build
- uses: actions/upload-artifact@v4
with:
name: worker-build
path: target/debug/worker-build
build-templates:
name: Templates
needs: worker-build
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@1.87.0
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: ~/.cargo/registry ~/.cargo/git target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- uses: actions/download-artifact@v4
with:
name: worker-build
path: ./target/debug
- name: Make worker-build executable
run: chmod +x ./target/debug/worker-build
- uses: cargo-bins/cargo-binstall@main
- name: Install cargo-generate
run: cargo binstall --locked cargo-generate
- name: Generate and build all templates
run: |
mkdir -p generated
for template in templates/*/; do
template_name=$(basename "$template")
if [ "$template_name" = "leptos" ]; then
echo "Skipping leptos template"
continue
fi
echo "Generating $template_name"
cargo generate --path $template --name "$template_name" --destination ./generated --force --define panic_unwind=false
cd "generated/$template_name"
echo "Building $template_name"
../../target/debug/worker-build
cd ../..
done
build-examples:
name: Examples
needs: worker-build
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@1.87.0
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: ~/.cargo/registry ~/.cargo/git target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- uses: actions/download-artifact@v4
with:
name: worker-build
path: ./target/debug
- name: Make worker-build executable
run: chmod +x ./target/debug/worker-build
- name: Build wasm-bindgen
run: cd wasm-bindgen && cargo build -p wasm-bindgen-cli --bin wasm-bindgen
- name: Build all examples
run: |
sed -i '/"examples\/axum",/d' Cargo.toml
for example in examples/*/; do
example_name=$(basename "$example")
if [ "$example_name" = "coredump" ]; then
echo "Skipping coredump example"
continue
fi
echo "Building $example_name"
cd "$example"
WASM_BINDGEN_BIN='../../wasm-bindgen/target/debug/wasm-bindgen' ../../target/debug/worker-build
cd ../..
done
rustfmt:
name: Formatter
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@1.87.0
with:
components: rustfmt, clippy
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: ~/.cargo/registry ~/.cargo/git target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Check Formatting
run: cargo fmt --all -- --check
- name: Check for idiomatic code
run: cargo clippy --features d1,queue --all-targets --workspace -- -D warnings
- name: Check for idiomatic code (http)
run: cargo clippy --all-features --package worker-sandbox --all-targets -- -D warnings
- name: Check for errors
run: cargo check
test:
name: Test
needs: worker-build
strategy:
matrix:
platform: ['ubuntu-latest', 'windows-latest']
runs-on: ${{ matrix.platform }}
steps:
- uses: dtolnay/rust-toolchain@1.87.0
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Chomp
uses: guybedford/chomp-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: worker-build
path: ./target/debug
- name: Make worker-build executable
run: chmod +x ./target/debug/worker-build
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: ~/.cargo/registry ~/.cargo/git target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Install npm dependencies
run: npm ci
- name: Install wasm32 target
run: rustup target add wasm32-unknown-unknown
- name: Run unit tests
run: chomp test:unit
- name: Run tests
run: chomp test
- name: Run tests (http)
run: chomp test-http
test-panic-unwind:
name: Test (panic-unwind)
needs: worker-build
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Chomp
uses: guybedford/chomp-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: worker-build
path: ./target/debug
- name: Make worker-build executable
run: chmod +x ./target/debug/worker-build
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: ~/.cargo/registry ~/.cargo/git target
key: ${{ runner.os }}-cargo-nightly-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-nightly-
- name: Install npm dependencies
run: npm ci
- name: Install wasm32 target
run: rustup target add wasm32-unknown-unknown
- name: Run tests (panic-unwind)
run: chomp test-panic-unwind