-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Appveyor fixes: fresh yarn, only node6 build #2382
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,16 @@ clone_depth: 10 | |
version: "{build}" | ||
|
||
environment: | ||
fast_finish: true | ||
matrix: | ||
- nodejs_version: "6.9.1" | ||
platform: x86 | ||
- nodejs_version: "7" | ||
- nodejs_version: "6" | ||
platform: x86 | ||
|
||
build: off | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version $env:platform | ||
- npm install yarn -g | ||
- yarn | ||
- yarn install-all | ||
|
||
|
@@ -26,6 +26,7 @@ test_script: | |
- node --version | ||
- npm --version | ||
- yarn --version | ||
- which yarn | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Windows has There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It works because we have MSYS in |
||
- yarn lint | ||
- yarn unit | ||
- yarn smoke | ||
|
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.
So, you don't want to test node.js 7 anymore?
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.
ideally i do, but i'm not sure the delay is worth it.
appveyor is significantly slower of a VM than our travis bots, and they don't have a reasonable timeout on inactivity. which means they're very regularly our last CI to finish.
so this evens the playing field a bit, and i don't think missing out on node7/windows is all that bad.
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.
Ah, OK, that's reasonable. Maybe have a comment for the future in this file?
I'm not affiliated with AppVeyor but I guess you could report any issues to them :)
On a side note, did you compare cold phase? Because caching isn't enabled if the build fails.