-
Notifications
You must be signed in to change notification settings - Fork 189
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
Fix cache directory on windows #251
Conversation
We are going to default to `C` Drive since vagrant does not know about the environament variables of the guest VM. Closes #250 Signed-off-by: Salim Afiune <[email protected]>
cc/ @test-kitchen/maintainers |
Not sure why this is needed, all the install management script stuffs are run on the instance, not locally. Also these two paths aren't equivalent, if you want to use a temp folder. |
@coderanger You are right! 😄 But the generation of the |
Hard coding |
I like the idea of at least making it configurable - that way we can fix the default case but also not dig ourselves a future hole. |
Sounds good to me! I'll work on that.
…On Wednesday, November 30, 2016, Seth Thomas ***@***.***> wrote:
I like the idea of at least making it configurable - that way we can fix
the default case but also not dig ourselves a future hole.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#251 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFcpfUBpzuy5gc1wuvKpUmaxoZ5-LptNks5rDaM7gaJpZM4LAX9i>
.
|
Lets make the `cache_directory` configurable so that if the end-user needs to customize it it can set this on their kitchen.yml file: ``` --- driver: cache_directory: D:\\my\\custom\\cache ``` Signed-off-by: Salim Afiune <[email protected]>
Signed-off-by: Salim Afiune <[email protected]>
Signed-off-by: Salim Afiune <[email protected]>
Travis is complaining with a deprecation, this commit simple applies the recomendations from: https://github.com/codeclimate/ruby-test-reporter/blob/master/CHANGELOG.md#v100-2016-11-03 Signed-off-by: Salim Afiune <[email protected]>
I think those last few commits fix up @coderanger's points and I'm a big +1 |
Signed-off-by: Salim Afiune <[email protected]>
ping @coderanger ^^^ |
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.
I assume the simplecov stuff is because of the compat break with code-climate, the actual change looks good though 👍
I actually tried this change manually and it didn't work, seems like the cache string is getting interpreted twice. I had to use c:\\omnibus\\cache otherwise it continued to present as
|
also, |
@kernelsmith Thank you for reporting your issue, we have fixed this problem and we are now in the process of releasing a new gem. If you want to try it you can always use the latest code in master this repository. |
We are going to default to
C
Drive since vagrant does not know aboutthe environament variables of the guest VM.
Closes #250
Signed-off-by: Salim Afiune [email protected]