Re: [Pharo-project] 1.2 Dev and Hudson
On Dec 20, 2010, at 4:21 AM, Guillermo Polito wrote:
Marcus,
How are we building 1.2 dev? Is it using always the last version of the ConfigurationOfPharo? If not, how can we do it? :)
It does "Dev image" Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfPharo'; load. ((Smalltalk at: #ConfigurationOfPharo) project version: '1.2-beta2') perform: #silently: with: true; perform: #load. So yes, right now we need to change the build script as soon as the version changes. -- Marcus Denker -- http://www.marcusdenker.de INRIA Lille -- Nord Europe. Team RMoD.
Yes, as Guille said, using #lastVersion would be more interesting here: "Dev image" Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfPharo'; load. ((Smalltalk at: #ConfigurationOfPharo) project lastVersion) perform: #silently: with: true; perform: #load. And even more, what about loading the baseline directly? cheers mariano On Mon, Dec 20, 2010 at 8:45 AM, Marcus Denker <marcus.denker@inria.fr>wrote:
On Dec 20, 2010, at 4:21 AM, Guillermo Polito wrote:
Marcus,
How are we building 1.2 dev? Is it using always the last version of the ConfigurationOfPharo? If not, how can we do it? :)
It does
"Dev image" Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfPharo'; load.
((Smalltalk at: #ConfigurationOfPharo) project version: '1.2-beta2') perform: #silently: with: true; perform: #load.
So yes, right now we need to change the build script as soon as the version changes.
-- Marcus Denker -- http://www.marcusdenker.de INRIA Lille -- Nord Europe. Team RMoD.
participants (2)
-
Marcus Denker -
Mariano Martinez Peck