Re: [Pharo-users] Checking baseline before publishing

2020-08-28 Thread Stéphane Ducasse
> On 28 Aug 2020, at 23:45, Jonathan van Alteren > wrote: > > Ah yes, sorry, you're right. You do have to commit/push for that to work. > > I'm interested to hear what your experience is with using #record. My experience is that there is nothing better than what you propose. > > Kind rega

Re: [Pharo-users] Checking baseline before publishing

2020-08-28 Thread Jonathan van Alteren
Ah yes, sorry, you're right. You do have to commit/push for that to work. I'm interested to hear what your experience is with using #record. Kind regards, Jonathan van Alteren Founding Member | Object Guild B.V. Sustainable Software for Purpose-Driven Organizations jvalte...@objectguild.com On

Re: [Pharo-users] Checking baseline before publishing

2020-08-28 Thread Dale Henrichs
Esteban, #record _is_ run against the baseline that is in the image if it is present. This is true for all of the Metacello commands - if the BaselineOf is present it is used, if it is not present it will be loaded. The #get command will load a fresh copy of the baseline from the repository.

Re: [Pharo-users] Checking baseline before publishing

2020-08-28 Thread Esteban Maringolo
Hi Jonathan, I never thought of SmalltalkCI for that (I use Gitlab) but in essence it still requires a trial and error approach (of committing the Baseline and loading it afterwards to see if it works). Metacello has a "record" operation that basically does a dry run of the load, but I don't know

Re: [Pharo-users] Checking baseline before publishing

2020-08-28 Thread Jonathan van Alteren
Hi Esteban, You might want to give smalltalkCI a try: https://github.com/hpi-swa/smalltalkCI I've recently started using it myself, with GitLab CI and GitHub Actions, but one of the cool things is that you can use it to test your build locally. For example, create a .smalltalk.ston file for you

Re: [Pharo-users] Checking baseline before publishing

2020-08-26 Thread Cyril Ferlicot D.
On 8/27/2020 4:10 AM, Esteban Maringolo wrote: > Hi, > > How can I check that my baseline works without having to publish > everything, check that it fails and then going to the origin, fixing, > etc? > > I might be particularly idiot to always miss something, I usually have > to try at least fou

[Pharo-users] Checking baseline before publishing

2020-08-26 Thread Esteban Maringolo
Hi, How can I check that my baseline works without having to publish everything, check that it fails and then going to the origin, fixing, etc? I might be particularly idiot to always miss something, I usually have to try at least four times (in a blank image) that my Baseline, dependencies, etc.