Skip to content

Commit

Permalink
Fix CI by not building docs Windows on 1.63.0
Browse files Browse the repository at this point in the history
.. 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`
  • Loading branch information
tnull committed Mar 4, 2024
1 parent 71a3e32 commit b291b3f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
if: matrix.build-uniffi
run: cargo build --features uniffi --verbose --color always
- name: Build documentation on Rust ${{ matrix.toolchain }}
if: "matrix.platform != 'windows-latest' || matrix.toolchain != '1.63.0'"
run: |
cargo doc --release --verbose --color always
cargo doc --document-private-items --verbose --color always
Expand Down

0 comments on commit b291b3f

Please sign in to comment.