-
Notifications
You must be signed in to change notification settings - Fork 31
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
[LDC] update travis.yml #18
Conversation
Failed because #19. |
I'm not very familiar with Travis yet. Is it possible to specify just DMD and LDC as compilers, rather than specific versions? With this change, I have to remember to update |
ping @MartinNowak
If you forget to update |
For now only compilers with specific versions are supported (e.g. dmd-2.066.1). This will remain the case until there is a generic way to obtain the latest version of each compiler. The default compiler is dmd-2.066.1. It's often a good idea to maunally update the compiler version, so that you can handle deprecations and such. |
@@ -1,4 +1,10 @@ | |||
language: d | |||
os: | |||
- linux | |||
- osx |
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.
Why do you need to test OSX. That wouldn't work with apt-get anyhow.
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.
When (if) Travis will support OS X apt-get
raise an error like reminder.
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.
Yes, but that error will be completely unrelated to the pull request that triggers it, and that is unfortunate. If Travis does not support D on OS X, the os:
section should just be removed.
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.
Removed
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.
It already does support D on OSX, but there isn't anything platform specific in this library, so you shouldn't needlessly waste Travis' resources.
Ok, I'll merge this as soon as the LDC issue is sorted out and the build succeeds. Thanks! |
This PR is a part of #22 |
No description provided.