I make changes to load Moose on pharo 1.2
here is the script: ===== Gofer new squeaksource: 'rb'; package: 'AST-Core'; package: 'Refactoring-Core'; package: 'Refactoring-Changes'; package: 'Refactoring-Critics'; package: 'Refactoring-Environment'; package: 'Refactoring-Spelling'; load. (ConfigurationOfShout project version: '1.2') load. Gofer new squeaksource: 'Moose'; package: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. ===== It loads, with some deprecation due to FileSystem. I have not the right to change that. But moose loads :) --- Jannik Laval _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Thanks for the report, Jannik.
Now, we will just have to make sure that we add these added in the right configurations. I will try to look into this. Cheers, Doru On 23 Oct 2010, at 18:15, Laval Jannik wrote: > I make changes to load Moose on pharo 1.2 > > here is the script: > ===== > Gofer new > squeaksource: 'rb'; > package: 'AST-Core'; > package: 'Refactoring-Core'; > package: 'Refactoring-Changes'; > package: 'Refactoring-Critics'; > package: 'Refactoring-Environment'; > package: 'Refactoring-Spelling'; > load. > > (ConfigurationOfShout project version: '1.2') load. > > Gofer new > squeaksource: 'Moose'; > package: 'ConfigurationOfMoose'; > load. > (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. > ===== > > It loads, with some deprecation due to FileSystem. I have not the right to change that. > But moose loads :) > > --- > Jannik Laval > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev -- www.tudorgirba.com "Yesterday is a fact. Tomorrow is a possibility. Today is a challenge." _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
In reply to this post by Laval Jannik-2
I run tests, and fix some ones.
All are green for Moose. Some problems with FS, but it seems not impact moose. Cheers, Jannik On Oct 23, 2010, at 18:15 , Laval Jannik wrote: > I make changes to load Moose on pharo 1.2 > > here is the script: > ===== > Gofer new > squeaksource: 'rb'; > package: 'AST-Core'; > package: 'Refactoring-Core'; > package: 'Refactoring-Changes'; > package: 'Refactoring-Critics'; > package: 'Refactoring-Environment'; > package: 'Refactoring-Spelling'; > load. > > (ConfigurationOfShout project version: '1.2') load. > > Gofer new > squeaksource: 'Moose'; > package: 'ConfigurationOfMoose'; > load. > (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. > ===== > > It loads, with some deprecation due to FileSystem. I have not the right to change that. > But moose loads :) > > --- > Jannik Laval > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev --- Jannik Laval _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
In reply to this post by Tudor Girba
I commit my changes of FileSystem in squeaksource.com\fs.
Jannik On Oct 23, 2010, at 18:27 , Tudor Girba wrote: > Thanks for the report, Jannik. > > Now, we will just have to make sure that we add these added in the right configurations. I will try to look into this. > > Cheers, > Doru > > > On 23 Oct 2010, at 18:15, Laval Jannik wrote: > >> I make changes to load Moose on pharo 1.2 >> >> here is the script: >> ===== >> Gofer new >> squeaksource: 'rb'; >> package: 'AST-Core'; >> package: 'Refactoring-Core'; >> package: 'Refactoring-Changes'; >> package: 'Refactoring-Critics'; >> package: 'Refactoring-Environment'; >> package: 'Refactoring-Spelling'; >> load. >> >> (ConfigurationOfShout project version: '1.2') load. >> >> Gofer new >> squeaksource: 'Moose'; >> package: 'ConfigurationOfMoose'; >> load. >> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >> ===== >> >> It loads, with some deprecation due to FileSystem. I have not the right to change that. >> But moose loads :) >> >> --- >> Jannik Laval >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > -- > www.tudorgirba.com > > "Yesterday is a fact. > Tomorrow is a possibility. > Today is a challenge." > > > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev --- Jannik Laval _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
In reply to this post by Tudor Girba
Just a better script:
====== Gofer new squeaksource: 'rb'; package: 'AST-Core'; package: 'Refactoring-Core'; package: 'Refactoring-Changes'; package: 'Refactoring-Critics'; package: 'Refactoring-Environment'; package: 'Refactoring-Spelling'; load. Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfShout'; load. ((Smalltalk at: #ConfigurationOfShout) project version: '1.2') load. Gofer new squeaksource: 'Moose'; package: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. ===== Cheers, Jannik On Oct 23, 2010, at 18:27 , Tudor Girba wrote: > Thanks for the report, Jannik. > > Now, we will just have to make sure that we add these added in the right configurations. I will try to look into this. > > Cheers, > Doru > > > On 23 Oct 2010, at 18:15, Laval Jannik wrote: > >> I make changes to load Moose on pharo 1.2 >> >> here is the script: >> ===== >> Gofer new >> squeaksource: 'rb'; >> package: 'AST-Core'; >> package: 'Refactoring-Core'; >> package: 'Refactoring-Changes'; >> package: 'Refactoring-Critics'; >> package: 'Refactoring-Environment'; >> package: 'Refactoring-Spelling'; >> load. >> >> (ConfigurationOfShout project version: '1.2') load. >> >> Gofer new >> squeaksource: 'Moose'; >> package: 'ConfigurationOfMoose'; >> load. >> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >> ===== >> >> It loads, with some deprecation due to FileSystem. I have not the right to change that. >> But moose loads :) >> >> --- >> Jannik Laval >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > -- > www.tudorgirba.com > > "Yesterday is a fact. > Tomorrow is a possibility. > Today is a challenge." > > > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev --- Jannik Laval _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Hi,
It looks like I managed to include these directives in the default configurations of Glamour and Moose and now it loads in PharoCore 1.2. I also created a hudson job for this: http://hudson.moosetechnology.org/job/moose-latest-dev-on-pharo-1.2/ Unfortunately, the script that runs the tests breaks, but I do not know yet why. Cheers, Doru On 23 Oct 2010, at 18:47, Laval Jannik wrote: > Just a better script: > > ====== > Gofer new > squeaksource: 'rb'; > package: 'AST-Core'; > package: 'Refactoring-Core'; > package: 'Refactoring-Changes'; > package: 'Refactoring-Critics'; > package: 'Refactoring-Environment'; > package: 'Refactoring-Spelling'; > load. > > Gofer new > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfShout'; > load. > > ((Smalltalk at: #ConfigurationOfShout) project version: '1.2') load. > > Gofer new > squeaksource: 'Moose'; > package: 'ConfigurationOfMoose'; > load. > (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. > ===== > > Cheers, > Jannik > On Oct 23, 2010, at 18:27 , Tudor Girba wrote: > >> Thanks for the report, Jannik. >> >> Now, we will just have to make sure that we add these added in the right configurations. I will try to look into this. >> >> Cheers, >> Doru >> >> >> On 23 Oct 2010, at 18:15, Laval Jannik wrote: >> >>> I make changes to load Moose on pharo 1.2 >>> >>> here is the script: >>> ===== >>> Gofer new >>> squeaksource: 'rb'; >>> package: 'AST-Core'; >>> package: 'Refactoring-Core'; >>> package: 'Refactoring-Changes'; >>> package: 'Refactoring-Critics'; >>> package: 'Refactoring-Environment'; >>> package: 'Refactoring-Spelling'; >>> load. >>> >>> (ConfigurationOfShout project version: '1.2') load. >>> >>> Gofer new >>> squeaksource: 'Moose'; >>> package: 'ConfigurationOfMoose'; >>> load. >>> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >>> ===== >>> >>> It loads, with some deprecation due to FileSystem. I have not the right to change that. >>> But moose loads :) >>> >>> --- >>> Jannik Laval >>> >>> >>> _______________________________________________ >>> Moose-dev mailing list >>> [hidden email] >>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >> >> -- >> www.tudorgirba.com >> >> "Yesterday is a fact. >> Tomorrow is a possibility. >> Today is a challenge." >> >> >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > --- > Jannik Laval > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev -- www.tudorgirba.com "Relationships are of two kinds: those we choose and those that happen. They both matter." _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Thank you Doru,
Jannik On Nov 7, 2010, at 10:23 , Tudor Girba wrote: > Hi, > > It looks like I managed to include these directives in the default configurations of Glamour and Moose and now it loads in PharoCore 1.2. > > I also created a hudson job for this: > http://hudson.moosetechnology.org/job/moose-latest-dev-on-pharo-1.2/ > > Unfortunately, the script that runs the tests breaks, but I do not know yet why. > > Cheers, > Doru > > > On 23 Oct 2010, at 18:47, Laval Jannik wrote: > >> Just a better script: >> >> ====== >> Gofer new >> squeaksource: 'rb'; >> package: 'AST-Core'; >> package: 'Refactoring-Core'; >> package: 'Refactoring-Changes'; >> package: 'Refactoring-Critics'; >> package: 'Refactoring-Environment'; >> package: 'Refactoring-Spelling'; >> load. >> >> Gofer new >> squeaksource: 'MetacelloRepository'; >> package: 'ConfigurationOfShout'; >> load. >> >> ((Smalltalk at: #ConfigurationOfShout) project version: '1.2') load. >> >> Gofer new >> squeaksource: 'Moose'; >> package: 'ConfigurationOfMoose'; >> load. >> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >> ===== >> >> Cheers, >> Jannik >> On Oct 23, 2010, at 18:27 , Tudor Girba wrote: >> >>> Thanks for the report, Jannik. >>> >>> Now, we will just have to make sure that we add these added in the right configurations. I will try to look into this. >>> >>> Cheers, >>> Doru >>> >>> >>> On 23 Oct 2010, at 18:15, Laval Jannik wrote: >>> >>>> I make changes to load Moose on pharo 1.2 >>>> >>>> here is the script: >>>> ===== >>>> Gofer new >>>> squeaksource: 'rb'; >>>> package: 'AST-Core'; >>>> package: 'Refactoring-Core'; >>>> package: 'Refactoring-Changes'; >>>> package: 'Refactoring-Critics'; >>>> package: 'Refactoring-Environment'; >>>> package: 'Refactoring-Spelling'; >>>> load. >>>> >>>> (ConfigurationOfShout project version: '1.2') load. >>>> >>>> Gofer new >>>> squeaksource: 'Moose'; >>>> package: 'ConfigurationOfMoose'; >>>> load. >>>> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >>>> ===== >>>> >>>> It loads, with some deprecation due to FileSystem. I have not the right to change that. >>>> But moose loads :) >>>> >>>> --- >>>> Jannik Laval >>>> >>>> >>>> _______________________________________________ >>>> Moose-dev mailing list >>>> [hidden email] >>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >>> >>> -- >>> www.tudorgirba.com >>> >>> "Yesterday is a fact. >>> Tomorrow is a possibility. >>> Today is a challenge." >>> >>> >>> >>> >>> _______________________________________________ >>> Moose-dev mailing list >>> [hidden email] >>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >> >> --- >> Jannik Laval >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > -- > www.tudorgirba.com > > "Relationships are of two kinds: those we choose and those that happen. They both matter." > > > > > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev --- Jannik Laval _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
In reply to this post by Tudor Girba
Thanks
Alexandre On 7 Nov 2010, at 06:23, Tudor Girba wrote: > Hi, > > It looks like I managed to include these directives in the default configurations of Glamour and Moose and now it loads in PharoCore 1.2. > > I also created a hudson job for this: > http://hudson.moosetechnology.org/job/moose-latest-dev-on-pharo-1.2/ > > Unfortunately, the script that runs the tests breaks, but I do not know yet why. > > Cheers, > Doru > > > On 23 Oct 2010, at 18:47, Laval Jannik wrote: > >> Just a better script: >> >> ====== >> Gofer new >> squeaksource: 'rb'; >> package: 'AST-Core'; >> package: 'Refactoring-Core'; >> package: 'Refactoring-Changes'; >> package: 'Refactoring-Critics'; >> package: 'Refactoring-Environment'; >> package: 'Refactoring-Spelling'; >> load. >> >> Gofer new >> squeaksource: 'MetacelloRepository'; >> package: 'ConfigurationOfShout'; >> load. >> >> ((Smalltalk at: #ConfigurationOfShout) project version: '1.2') load. >> >> Gofer new >> squeaksource: 'Moose'; >> package: 'ConfigurationOfMoose'; >> load. >> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >> ===== >> >> Cheers, >> Jannik >> On Oct 23, 2010, at 18:27 , Tudor Girba wrote: >> >>> Thanks for the report, Jannik. >>> >>> Now, we will just have to make sure that we add these added in the right configurations. I will try to look into this. >>> >>> Cheers, >>> Doru >>> >>> >>> On 23 Oct 2010, at 18:15, Laval Jannik wrote: >>> >>>> I make changes to load Moose on pharo 1.2 >>>> >>>> here is the script: >>>> ===== >>>> Gofer new >>>> squeaksource: 'rb'; >>>> package: 'AST-Core'; >>>> package: 'Refactoring-Core'; >>>> package: 'Refactoring-Changes'; >>>> package: 'Refactoring-Critics'; >>>> package: 'Refactoring-Environment'; >>>> package: 'Refactoring-Spelling'; >>>> load. >>>> >>>> (ConfigurationOfShout project version: '1.2') load. >>>> >>>> Gofer new >>>> squeaksource: 'Moose'; >>>> package: 'ConfigurationOfMoose'; >>>> load. >>>> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >>>> ===== >>>> >>>> It loads, with some deprecation due to FileSystem. I have not the right to change that. >>>> But moose loads :) >>>> >>>> --- >>>> Jannik Laval >>>> >>>> >>>> _______________________________________________ >>>> Moose-dev mailing list >>>> [hidden email] >>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >>> >>> -- >>> www.tudorgirba.com >>> >>> "Yesterday is a fact. >>> Tomorrow is a possibility. >>> Today is a challenge." >>> >>> >>> >>> >>> _______________________________________________ >>> Moose-dev mailing list >>> [hidden email] >>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >> >> --- >> Jannik Laval >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > -- > www.tudorgirba.com > > "Relationships are of two kinds: those we choose and those that happen. They both matter." > > > > > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Hi,
It looks like the regular linux VM crashes when we save and quit the image because of the deprecation in platformName. So, now I switched the whole hudson server to use the Cog VM. So, now we have only 5 tests that are yellow in PharoCore 1.2, which is great: http://hudson.moosetechnology.org/job/moose-latest-dev-on-pharo-1.2/ The cool thing is that the build time went from ~40+min to ~13min. The consequence is that you will only be able to open the built images with Cog VMs from now on. Cheers, Doru On 7 Nov 2010, at 23:14, Alexandre Bergel wrote: > Thanks > > Alexandre > > > On 7 Nov 2010, at 06:23, Tudor Girba wrote: > >> Hi, >> >> It looks like I managed to include these directives in the default configurations of Glamour and Moose and now it loads in PharoCore 1.2. >> >> I also created a hudson job for this: >> http://hudson.moosetechnology.org/job/moose-latest-dev-on-pharo-1.2/ >> >> Unfortunately, the script that runs the tests breaks, but I do not know yet why. >> >> Cheers, >> Doru >> >> >> On 23 Oct 2010, at 18:47, Laval Jannik wrote: >> >>> Just a better script: >>> >>> ====== >>> Gofer new >>> squeaksource: 'rb'; >>> package: 'AST-Core'; >>> package: 'Refactoring-Core'; >>> package: 'Refactoring-Changes'; >>> package: 'Refactoring-Critics'; >>> package: 'Refactoring-Environment'; >>> package: 'Refactoring-Spelling'; >>> load. >>> >>> Gofer new >>> squeaksource: 'MetacelloRepository'; >>> package: 'ConfigurationOfShout'; >>> load. >>> >>> ((Smalltalk at: #ConfigurationOfShout) project version: '1.2') load. >>> >>> Gofer new >>> squeaksource: 'Moose'; >>> package: 'ConfigurationOfMoose'; >>> load. >>> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >>> ===== >>> >>> Cheers, >>> Jannik >>> On Oct 23, 2010, at 18:27 , Tudor Girba wrote: >>> >>>> Thanks for the report, Jannik. >>>> >>>> Now, we will just have to make sure that we add these added in the right configurations. I will try to look into this. >>>> >>>> Cheers, >>>> Doru >>>> >>>> >>>> On 23 Oct 2010, at 18:15, Laval Jannik wrote: >>>> >>>>> I make changes to load Moose on pharo 1.2 >>>>> >>>>> here is the script: >>>>> ===== >>>>> Gofer new >>>>> squeaksource: 'rb'; >>>>> package: 'AST-Core'; >>>>> package: 'Refactoring-Core'; >>>>> package: 'Refactoring-Changes'; >>>>> package: 'Refactoring-Critics'; >>>>> package: 'Refactoring-Environment'; >>>>> package: 'Refactoring-Spelling'; >>>>> load. >>>>> >>>>> (ConfigurationOfShout project version: '1.2') load. >>>>> >>>>> Gofer new >>>>> squeaksource: 'Moose'; >>>>> package: 'ConfigurationOfMoose'; >>>>> load. >>>>> (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault. >>>>> ===== >>>>> >>>>> It loads, with some deprecation due to FileSystem. I have not the right to change that. >>>>> But moose loads :) >>>>> >>>>> --- >>>>> Jannik Laval >>>>> >>>>> >>>>> _______________________________________________ >>>>> Moose-dev mailing list >>>>> [hidden email] >>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >>>> >>>> -- >>>> www.tudorgirba.com >>>> >>>> "Yesterday is a fact. >>>> Tomorrow is a possibility. >>>> Today is a challenge." >>>> >>>> >>>> >>>> >>>> _______________________________________________ >>>> Moose-dev mailing list >>>> [hidden email] >>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >>> >>> --- >>> Jannik Laval >>> >>> >>> _______________________________________________ >>> Moose-dev mailing list >>> [hidden email] >>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >> >> -- >> www.tudorgirba.com >> >> "Relationships are of two kinds: those we choose and those that happen. They both matter." >> >> >> >> >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > -- > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: > Alexandre Bergel http://www.bergel.eu > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > > > > > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev -- www.tudorgirba.com "To lead is not to demand things, it is to make them happen." _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Free forum by Nabble | Edit this page |