Metacello CI Build

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Metacello CI Build

Sean P. DeNigris
Administrator
Dale has implemented some really cool Metacello features (e.g. bitbucket://, github://) after the version loaded in Pharo 4.0. To help us stay in sync, and also to provide a ready-made image with latest Metacello, I set up a CI build - https://ci.inria.fr/pharo-contribution/job/Metacello/
Cheers,
Sean
Reply | Threaded
Open this post in threaded view
|

Re: Metacello CI Build

hernanmd
Hi Sean,

Thank you for the update.
Is there a way to get the Metacello updates in 4.0 by evaluating code?

HernĂ¡n


2015-08-21 21:27 GMT-03:00 Sean P. DeNigris <[hidden email]>:
Dale has implemented some really cool Metacello features (e.g. bitbucket://,
github://) after the version loaded in Pharo 4.0. To help us stay in sync,
and also to provide a ready-made image with latest Metacello, I set up a CI
build - https://ci.inria.fr/pharo-contribution/job/Metacello/



-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Metacello-CI-Build-tp4844932.html
Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.


Reply | Threaded
Open this post in threaded view
|

Re: Metacello CI Build

Sean P. DeNigris
Administrator
hernanmd wrote
Is there a way to get the Metacello updates in 4.0 by evaluating code?
Yes, the instructions are in the GitHub README [1]. Namely:
Metacello new
  baseline: 'Metacello';
  repository: 'github://dalehenrich/metacello-work:master/repository';
  get.
Metacello new
  baseline: 'Metacello';
  repository: 'github://dalehenrich/metacello-work:master/repository';
  onConflict: [:ex | ex allow];
  load

[1] https://github.com/seandenigris/metacello-work#pharo30
Cheers,
Sean
Reply | Threaded
Open this post in threaded view
|

Re: Metacello CI Build

Ben Coman
On Sat, Aug 22, 2015 at 1:14 PM, Sean P. DeNigris <[hidden email]> wrote:

> hernanmd wrote
>> Is there a way to get the Metacello updates in 4.0 by evaluating code?
>
> Yes, the instructions are in the GitHub README [1]. Namely:
> Metacello new
>   baseline: 'Metacello';
>   repository: 'github://dalehenrich/metacello-work:master/repository';
>   get.
> Metacello new
>   baseline: 'Metacello';
>   repository: 'github://dalehenrich/metacello-work:master/repository';
>   onConflict: [:ex | ex allow];
>   load
>
> [1] https://github.com/seandenigris/metacello-work#pharo30

Something in the Configuration Browser would be nice.
cheers -ben