Login  Register

Iceberg: Installing a baseline from a self hosted Git/Gitea repository branch

Posted by Offray Vladimir Luna Cárdenas-2 on Jul 14, 2020; 6:01pm
URL: https://forum.world.st/Iceberg-Installing-a-baseline-from-a-self-hosted-Git-Gitea-repository-branch-tp5119672.html

HI.

I'm migrating my packages from StHub to a self hosted Gitea instance. I have already a test BaselineOf hosted there and referring to other self hosted repositories. I'm following the [Baselines documentation](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md) for all this. But when I try to load the baseline from the beta/migration branch running the code below, I get the message Could not resolve: BaselineOfGrafoscopio in https://code.tupale.co/Offray/Grafoscopio/src/branch/beta/migration/. How can I load Baselines hosted in a branch inside a self hosted Git/Gitea repository?

Metacello new 
    baseline: 'Grafoscopio';
    repository: 'https://code.tupale.co/Offray/Grafoscopio/src/branch/beta/migration/';
    load

Thanks,

Offray