-
Notifications
You must be signed in to change notification settings - Fork 125
447 lines (373 loc) · 19 KB
/
ci.yml
File metadata and controls
447 lines (373 loc) · 19 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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
name: CI
on:
workflow_dispatch:
pull_request:
branches: [ main ]
push:
branches: [ main ]
# Cancel any in-flight jobs for the same PR/branch so there's only one active
# at a time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
RUST_BACKTRACE: full
jobs:
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --all -- --check
- run: cd ${{ github.workspace }}/examples && cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 'latest'
install-chromedriver: true
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
targets: wasm32-unknown-unknown
# lint the main library workspace for non-wasm target
- run: cargo clippy --features all -- -D warnings -A deprecated
# lint the non-wasm examples
- run: cd ${{ github.workspace }}/examples && cargo clippy --workspace --exclude "wasm*" --exclude "kaleido" -- -D warnings
# lint the plotly library for wasm target
- run: cargo clippy --package plotly --target wasm32-unknown-unknown -- -D warnings
# lint the wasm examples
- run: cd ${{ github.workspace }}/examples/wasm-yew && cargo clippy --target wasm32-unknown-unknown --all
semver:
name: semver
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
with:
package: plotly
feature-group: only-explicit-features
features: kaleido
rust-toolchain: stable
release-type: minor
test:
name: Tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 'latest'
install-chromedriver: true
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --features plotly_ndarray,plotly_image,static_export_default
- if: ${{ matrix.os == 'windows-latest' }}
run: gci -recurse -filter "*example*"
test-static-export:
name: Test Static Export
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
browser: [firefox, chrome]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Firefox
if: matrix.browser == 'firefox'
uses: browser-actions/setup-firefox@v1
with:
firefox-version: 'latest'
- name: Setup Chrome
if: matrix.browser == 'chrome'
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 'latest'
install-chromedriver: true
- uses: dtolnay/rust-toolchain@stable
- name: Test plotly and plotly_static
shell: bash
run: |
echo "=== Platform Information ==="
echo "OS: $(uname -a)"
echo "Architecture: $(uname -m)"
echo "Current directory: $(pwd)"
echo "=== Checking for existing processes ==="
ps aux | grep -E "(chromedriver|geckodriver|firefox|chrome)" || echo "No browser processes found"
echo "=== Checking port availability ==="
netstat -an | grep -E ":(4444|4445|4446|4447|4448|4449|4450)" || echo "No WebDriver ports in use"
echo "=== Running tests ==="
if [ "${{ matrix.browser }}" = "firefox" ]; then
echo "Testing with Firefox/geckodriver..."
echo "=== Firefox Environment Check ==="
echo "Firefox version: $(firefox --version 2>/dev/null || echo 'Firefox not found in PATH')"
echo "geckodriver version: $(geckodriver --version 2>/dev/null || echo 'geckodriver not found in PATH')"
echo "Available memory: $(free -h 2>/dev/null || echo 'free command not available')"
echo "Available disk space: $(df -h . 2>/dev/null || echo 'df command not available')"
echo "=== Testing plotly with Firefox ==="
cargo test -p plotly --features static_export_default --lib -- --nocapture
echo "=== Testing plotly_static with Firefox ==="
cargo test -p plotly_static --features geckodriver,webdriver_download -- --nocapture
else
echo "Testing with Chrome/chromedriver..."
echo "=== Chrome Environment Check ==="
echo "Chrome version: $(google-chrome --version 2>/dev/null || echo 'Chrome not found in PATH')"
echo "chromedriver version: $(chromedriver --version 2>/dev/null || echo 'chromedriver not found in PATH')"
echo "=== Testing plotly with Chrome ==="
cargo test -p plotly --features static_export_chromedriver,static_export_downloader --lib -- --nocapture
echo "=== Testing plotly_static with Chrome ==="
cargo test -p plotly_static --features chromedriver,webdriver_download -- --nocapture
fi
echo "=== Cleanup after tests ==="
pkill -f chromedriver || echo "No chromedriver processes to kill"
pkill -f geckodriver || echo "No geckodriver processes to kill"
pkill -f firefox || echo "No firefox processes to kill"
pkill -f chrome || echo "No chrome processes to kill"
test-macos-compatibility:
name: Test macOS Compatibility
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 'latest'
install-chromedriver: true
- uses: dtolnay/rust-toolchain@stable
- name: Test Chrome and chromedriver installation
run: |
echo "=== System Information ==="
echo "macOS version: $(sw_vers)"
echo "Architecture: $(uname -m)"
echo "PATH: $PATH"
echo "Current user: $(whoami)"
echo "Home directory: $HOME"
echo "=== Chrome Installation Check ==="
ls -la "/Applications/Google Chrome.app/Contents/MacOS/" || echo "Chrome not found in Applications"
which google-chrome || echo "Chrome not found in PATH"
google-chrome --version || echo "Chrome version check failed"
echo "=== chromedriver Installation Check ==="
chromedriver --version || echo "chromedriver not found in PATH"
ls -la /usr/local/bin/chromedriver || echo "chromedriver not found in /usr/local/bin"
ls -la /opt/homebrew/bin/chromedriver || echo "chromedriver not found in /opt/homebrew/bin"
echo "=== Environment Variables ==="
echo "WEBDRIVER_PATH: ${WEBDRIVER_PATH:-not set}"
echo "CHROMEDRIVER_PATH: ${CHROMEDRIVER_PATH:-not set}"
echo "CHROME_PATH: ${CHROME_PATH:-not set}"
- name: Run macOS-specific tests
run: |
echo "Running macOS compatibility tests..."
echo "Current directory: $(pwd)"
echo "Rust version: $(rustc --version)"
echo "Cargo version: $(cargo --version)"
# Run tests with verbose output and capture failures
set -x # Enable debug mode
echo "=== Testing Chrome installation ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_chrome_installation || echo "Chrome installation test failed"
echo "=== Testing chromedriver installation ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_chromedriver_installation || echo "chromedriver installation test failed"
echo "=== Testing static exporter creation ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_static_exporter_creation_macos || echo "Static exporter creation test failed"
echo "=== Testing basic PNG export ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_basic_png_export_macos || echo "Basic PNG export test failed"
echo "=== Testing macOS Chrome flags ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_macos_chrome_flags || echo "macOS Chrome flags test failed"
echo "=== Testing user data directory management ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_user_data_directory_management || echo "User data directory management test failed"
echo "=== Testing PDF debugging ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_pdf_debugging_macos || echo "PDF debugging test failed"
echo "=== Testing PDF with alternative flags ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_pdf_with_alternative_flags || echo "PDF alternative flags test failed"
echo "=== Testing html2pdf library availability ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib macos_tests::macos_tests::test_html2pdf_library_loading || echo "html2pdf library test failed"
- name: Run all plotly_static tests on macOS
run: |
echo "Running all plotly_static tests on macOS..."
echo "Checking for existing chromedriver processes before tests..."
ps aux | grep chromedriver || echo "No chromedriver processes found"
# Run tests with timeout to prevent hanging
timeout 300 cargo test -p plotly_static --features chromedriver,webdriver_download --lib || echo "Tests timed out or failed"
echo "Checking for chromedriver processes after tests..."
ps aux | grep chromedriver || echo "No chromedriver processes found"
- name: Test plotly with static export on macOS
run: |
echo "Testing plotly with static export on macOS..."
echo "Checking for port conflicts before tests..."
lsof -i :4444 || echo "Port 4444 is free"
lsof -i :4445 || echo "Port 4445 is free"
lsof -i :4446 || echo "Port 4446 is free"
lsof -i :4447 || echo "Port 4447 is free"
cargo test -p plotly --features static_export_chromedriver,static_export_downloader --lib || echo "plotly static export tests failed"
echo "Cleaning up after tests..."
pkill -f chromedriver || echo "No chromedriver processes to kill"
pkill -f "Google Chrome" || echo "No Chrome processes to kill"
test-windows-compatibility:
name: Test Windows Compatibility
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 'latest'
install-chromedriver: true
- uses: dtolnay/rust-toolchain@stable
- name: Test Chrome and chromedriver installation
shell: cmd
run: |
echo "=== System Information ==="
echo "OS: %OS%"
echo "Architecture: %PROCESSOR_ARCHITECTURE%"
echo "PATH: %PATH%"
echo "Current user: %USERNAME%"
echo "Home directory: %USERPROFILE%"
echo "=== Chrome Installation Check ==="
dir "C:\Program Files\Google\Chrome\Application\chrome.exe" 2>nul || echo "Chrome not found in Program Files"
where google-chrome 2>nul || echo "Chrome not found in PATH"
google-chrome --version 2>nul || echo "Chrome version check failed"
echo "=== chromedriver Installation Check ==="
chromedriver --version 2>nul || echo "chromedriver not found in PATH"
dir "C:\Program Files\Google\Chrome\Application\chromedriver.exe" 2>nul || echo "chromedriver not found in Program Files"
echo "=== Environment Variables ==="
echo "WEBDRIVER_PATH: %WEBDRIVER_PATH%"
echo "CHROMEDRIVER_PATH: %CHROMEDRIVER_PATH%"
echo "CHROME_PATH: %CHROME_PATH%"
- name: Run Windows-specific tests
shell: cmd
run: |
echo "Running Windows compatibility tests..."
echo "Current directory: %CD%"
echo "Rust version: %RUST_VERSION%"
echo "Cargo version: %CARGO_VERSION%"
echo "=== Testing Chrome installation ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_chrome_installation_windows
echo "=== Testing chromedriver installation ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_chromedriver_installation_windows
echo "=== Testing static exporter creation ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_static_exporter_creation_windows
echo "=== Testing basic PNG export ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_basic_png_export_windows
echo "=== Testing Windows Chrome flags ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_windows_chrome_flags
echo "=== Testing user data directory management ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_user_data_directory_management_windows
echo "=== Testing Windows process management ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_windows_process_management
echo "=== Testing Windows port availability ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib windows_tests::windows_tests::test_windows_port_availability
- name: Run all plotly_static tests on Windows
shell: cmd
run: |
echo "Running all plotly_static tests on Windows..."
echo "Checking for existing chromedriver processes before tests..."
tasklist /FI "IMAGENAME eq chromedriver.exe" 2>nul || echo "No chromedriver processes found"
echo "=== Running tests ==="
cargo test -p plotly_static --features chromedriver,webdriver_download --lib
echo "Checking for chromedriver processes after tests..."
tasklist /FI "IMAGENAME eq chromedriver.exe" 2>nul || echo "No chromedriver processes found"
- name: Test plotly with static export on Windows
shell: cmd
run: |
echo "Testing plotly with static export on Windows..."
echo "Checking for port conflicts before tests..."
netstat -an | findstr ":4444" || echo "Port 4444 is free"
netstat -an | findstr ":4445" || echo "Port 4445 is free"
netstat -an | findstr ":4446" || echo "Port 4446 is free"
netstat -an | findstr ":4447" || echo "Port 4447 is free"
echo "=== Running plotly static export tests ==="
cargo test -p plotly --features static_export_chromedriver,static_export_downloader --lib
echo "Cleaning up after tests..."
taskkill /F /IM chromedriver.exe 2>nul || echo "No chromedriver processes to kill"
taskkill /F /IM chrome.exe 2>nul || echo "No Chrome processes to kill"
code-coverage:
name: Code Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- uses: taiki-e/install-action@cargo-llvm-cov
- uses: codecov/codecov-action@v3
build_examples:
name: Build Examples
strategy:
fail-fast: false
matrix:
example: # missing jupyter
[
3d_charts,
basic_charts,
custom_controls,
customization,
financial_charts,
images,
kaleido,
maps,
ndarray,
scientific_charts,
shapes,
static_export,
subplots,
themes,
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Firefox (for static_export)
if: matrix.example == 'static_export'
uses: browser-actions/setup-firefox@v1
with:
firefox-version: 'latest'
- uses: dtolnay/rust-toolchain@stable
- run: cd ${{ github.workspace }}/examples/${{ matrix.example }} && cargo build
build_wasm_examples:
name: Build Wasm Examples
strategy:
fail-fast: false
matrix:
example: [basic, callback-example]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- run: cd ${{ github.workspace }}/examples/wasm-yew/${{ matrix.example }} && cargo build --target wasm32-unknown-unknown
build_book:
name: Build Book
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Firefox (for static_export example)
uses: browser-actions/setup-firefox@v1
with:
firefox-version: 'latest'
- uses: dtolnay/rust-toolchain@stable
- run: cargo install mdbook --no-default-features --features search --vers "^0.4" --locked --quiet
- name: Build examples to generate needed html files
run: |
cd ${{ github.workspace }}/examples/basic_charts && cargo run
cd ${{ github.workspace }}/examples/statistical_charts && cargo run
cd ${{ github.workspace }}/examples/scientific_charts && cargo run
cd ${{ github.workspace }}/examples/financial_charts && cargo run
cd ${{ github.workspace }}/examples/3d_charts && cargo run
cd ${{ github.workspace }}/examples/subplots && cargo run
cd ${{ github.workspace }}/examples/shapes && cargo run
cd ${{ github.workspace }}/examples/themes && cargo run
cd ${{ github.workspace }}/examples/static_export && cargo run
- name: Build book
run: mdbook build docs/book