Skip to content

Commit b291b3f

Browse files
committed
Fix CI by not building docs Windows on 1.63.0
.. unfortunately the `windows-sys` dependency recently seems to have broken their doc builds on rustc 1.63.0. As tests and builds still work without issue, we fix CI by just not building docs on `windows-latest`/`1.63.0`
1 parent 71a3e32 commit b291b3f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
if: matrix.build-uniffi
6767
run: cargo build --features uniffi --verbose --color always
6868
- name: Build documentation on Rust ${{ matrix.toolchain }}
69+
if: "matrix.platform != 'windows-latest' || matrix.toolchain != '1.63.0'"
6970
run: |
7071
cargo doc --release --verbose --color always
7172
cargo doc --document-private-items --verbose --color always

0 commit comments

Comments
 (0)