You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.
Appveyor provides free online builds for open source projects so we should configure this project to use it for automating builds. Since Gunship is pure Rust this should be pretty simple. The build script should do the following:
Download the latest Rust nightly (assuming Appveyor doesn't have built-in Rust support the way Travis does).
Execute cargo build at the root of the project to build Gunship and all of its dependencies.
Execute cargo build --example for each of the examples.
Execute cargo test to build and run the tests.
Extra special bonus points if you also run all tests and examples for all of the crates in lib/.
The Appveyor website has documentation on how to setup builds so that should be the first place you look. I've also setup Appveyor for other projects so I might be able to offer some help.
The text was updated successfully, but these errors were encountered:
Appveyor provides free online builds for open source projects so we should configure this project to use it for automating builds. Since Gunship is pure Rust this should be pretty simple. The build script should do the following:
cargo build
at the root of the project to build Gunship and all of its dependencies.cargo build --example
for each of the examples.cargo test
to build and run the tests.Extra special bonus points if you also run all tests and examples for all of the crates in
lib/
.The Appveyor website has documentation on how to setup builds so that should be the first place you look. I've also setup Appveyor for other projects so I might be able to offer some help.
The text was updated successfully, but these errors were encountered: