A Rust library for reading the OpenStreetMap PBF file format (*.osm.pbf).

.appveyor.yml 865B

123456789101112131415161718192021222324252627282930313233343536
  1. # Based on template from here: https://github.com/starkat99/appveyor-rust
  2. os: Visual Studio 2015
  3. environment:
  4. matrix:
  5. ### MSVC Toolchains ###
  6. - channel: stable
  7. target: x86_64-pc-windows-msvc
  8. - channel: stable
  9. target: i686-pc-windows-msvc
  10. - channel: nightly
  11. target: x86_64-pc-windows-msvc
  12. - channel: nightly
  13. target: i686-pc-windows-msvc
  14. - channel: 1.18.0
  15. target: x86_64-pc-windows-msvc
  16. ### GNU Toolchains ###
  17. - channel: nightly
  18. target: x86_64-pc-windows-gnu
  19. - channel: nightly
  20. target: i686-pc-windows-gnu
  21. install:
  22. - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
  23. - rustup-init -yv --default-toolchain %channel% --default-host %target%
  24. - set PATH=%PATH%;%USERPROFILE%\.cargo\bin
  25. - rustc -vV
  26. - cargo -vV
  27. build: false
  28. test_script:
  29. - cargo test --verbose