mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +11:00
6bec912961
* Add optional serde feature * Document features in README * Add changelog entry * Implement some missing derivable traits * Add changelog entry for std derives * Remove extraneous space on serde doc comments * Add period to end of serde line in readme * Remove serde impls from WindowAttributes * Add serde impls for TouchPhase * Add serde test file * Add feature lines to testing CIs * Remove WindowAttributes from changelog
27 lines
702 B
YAML
27 lines
702 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
CHANNEL: nightly
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
CHANNEL: stable
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
CHANNEL: 1.24.1
|
|
- TARGET: i686-pc-windows-msvc
|
|
CHANNEL: nightly
|
|
- TARGET: i686-pc-windows-gnu
|
|
CHANNEL: nightly
|
|
install:
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init -yv --default-toolchain %CHANNEL% --default-host %TARGET%
|
|
- SET PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
|
- SET PATH=%PATH%;C:\MinGW\bin
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --verbose
|
|
- cargo test --features serde --verbose
|
|
- cargo test --features icon_loading --verbose
|