-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Appveyor Config for Windows CI #135
Conversation
@killercup - please may you get the necessary badge from https://ci.appveyor.com/project/killercup/cargo-edit and add it to the readme (assuming this builds OK)? |
Sweet! Thanks so much! Code for readme is [![Build status](https://ci.appveyor.com/api/projects/status/m23rnkaxhipb23i9/branch/master?svg=true)](https://ci.appveyor.com/project/killercup/cargo-edit/branch/master) Can you also the badges metadata to the Cargo.toml? (cf. http://doc.crates.io/manifest.html#package-metadata) |
Thanks. I'll add the badges to `Cargo.toml` and the readme and then merge.
|
appveyor.yml
Outdated
- TARGET: i686-pc-windows-msvc | ||
- TARGET: i686-pc-windows-gnu | ||
install: | ||
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this testing nightly?
I think we should only test stable on Windows, because nightly can fail and we're testing other channels on linux.
See appveyor example.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That looks like a nicer way of doing things - I've just switched over verbatim.
@bjgill Could you please squash the commits? |
Add Appveyor-based Windows CI for 32/64bit msvc/gnu Windows. Also include a full set of badges in the readme and Cargo.toml
Thanks. bors r+ |
Build succeeded |
Reprise of #49 - it seems to work again now ().
Fixes #55