-
Notifications
You must be signed in to change notification settings - Fork 701
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
CI tool for Windows builds #367
Conversation
Seriously, Travis CI has had time to build 4 versions that AppVeyor hasn't even started one. Definitely only one version in its conf or we'll never wait for the build to finish before merging :-) |
Looks good to me, not always easy to get a Winblows handy to test on 👍 |
test_script: | ||
- node --version | ||
- npm --version | ||
- npm run test:mocha |
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.
Change these three npm run
to just npm run test
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.
Change these three npm run to just npm run test
Also, you can just do "npm test" as that's a link in npm to "npm run test"
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.
True, we lose reports if one fails (as Travis CI does), but the whole point of this is to make sure npm install
and npm test
do not break for Windows...
Done in c886657.
d402b0d
to
55c483b
Compare
CI tool for Windows builds
History has shown that we have broke our build/test environment on Windows before, see #309.
This is just a smoke test to make sure we don't do this again. For example, things like #361 need that kind of things, otherwise we'll always have to ask "can someone test on Windows please?" :-)
Regarding Node version, I went for latest LTS. I know @maxpoulin64 is in favor of specifying latest. I don't have a preference, I'll go with whatever you guys want. Any of them is still better than none!
Note that AppVeyor does not parallelize and is rather super slow, so we should stick to one.
Also, you'll notice badge says
astorije/lounge
. That's because stupid AppVeyor doesn't reflect GitHub organizations, doh. If that's a huge deal for you, I'll find a way (like creating a secondary account, but what a pain), otherwise I think it's good enough for our needs.