www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - How does the D compiler get updated on travis-ci.org?

reply "Gary Willoughby" <dev nomad.so> writes:
Now that we have a new D compiler version released how does the D 
compiler on travis-ci.org get updated?

I've recently fixed some issues (in my code) that were hampered 
by a bug in the last version. Now that it's fixed the older 
version on travis-ci.org is crashing because of it.

I've raised an issue here:
https://github.com/travis-ci/travis-ci/issues/3472
Mar 26 2015
parent reply "extrawurst" <stephan extrawurst.org> writes:
On Thursday, 26 March 2015 at 19:31:44 UTC, Gary Willoughby wrote:
 Now that we have a new D compiler version released how does the 
 D compiler on travis-ci.org get updated?

 I've recently fixed some issues (in my code) that were hampered 
 by a bug in the last version. Now that it's fixed the older 
 version on travis-ci.org is crashing because of it.

 I've raised an issue here:
 https://github.com/travis-ci/travis-ci/issues/3472
i think it is already available on travis. this it what works for me: https://github.com/Extrawurst/unecht/blob/master/.travis.yml ``` language: d d: - dmd-2.067.0 ```
Mar 26 2015
parent reply "Gary Willoughby" <dev nomad.so> writes:
On Thursday, 26 March 2015 at 19:37:06 UTC, extrawurst wrote:
 i think it is already available on travis. this it what works 
 for me:
 https://github.com/Extrawurst/unecht/blob/master/.travis.yml

 ```
 language: d

 d:
   - dmd-2.067.0
 ```
I'm just using: language: d I hoped this would pick up the latest version.
Mar 26 2015
parent reply "Alex Parrill" <initrd.gz gmail.com> writes:
On Thursday, 26 March 2015 at 20:40:50 UTC, Gary Willoughby wrote:
 On Thursday, 26 March 2015 at 19:37:06 UTC, extrawurst wrote:
 i think it is already available on travis. this it what works 
 for me:
 https://github.com/Extrawurst/unecht/blob/master/.travis.yml

 ```
 language: d

 d:
  - dmd-2.067.0
 ```
I'm just using: language: d I hoped this would pick up the latest version.
From the source [1], looks like its harcoded to default to 2.066.1. [1] https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/d.rb
Mar 26 2015
parent "extrawurst" <stephan extrawurst.org> writes:
On Thursday, 26 March 2015 at 21:02:56 UTC, Alex Parrill wrote:
 On Thursday, 26 March 2015 at 20:40:50 UTC, Gary Willoughby 
 wrote:
 On Thursday, 26 March 2015 at 19:37:06 UTC, extrawurst wrote:
 i think it is already available on travis. this it what works 
 for me:
 https://github.com/Extrawurst/unecht/blob/master/.travis.yml

 ```
 language: d

 d:
 - dmd-2.067.0
 ```
I'm just using: language: d I hoped this would pick up the latest version.
From the source [1], looks like its harcoded to default to 2.066.1. [1] https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/d.rb
i made a PR: https://github.com/travis-ci/travis-build/pull/414
Mar 27 2015