Testing baselines with preliminar Gitea support.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2020-07-18 16:34:44 -05:00
parent 9ac4985542
commit e0c939b7d3
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,36 @@
Class {
#name : #BaselineOfGrafoscopioUtils,
#superclass : #BaselineOf,
#category : #BaselineOfGrafoscopioUtils
}
{ #category : #baselines }
BaselineOfGrafoscopioUtils >> baseline: spec [
"Dependencies"
self fossil: spec.
"Packages"
spec project: 'Grafoscopio-Utils' with: [ spec requires: #('Fossil') ]
]
{ #category : #'as yet unclassified' }
BaselineOfGrafoscopioUtils >> fossil: spec [
"I load the configuration of Fossil using a external Gitea repository."
"While more Git independient providers are implemented in Monticello, I will use Iceberg
to download the repository and load it from a local directory"
| location |
location := FileLocator localDirectory / 'iceberg' / 'Offray' / 'Fossil'.
(IceRepositoryCreator new
location: location;
remote: (IceGitRemote url: 'https://code.tupale.co/Offray/Fossil.git');
createRepository)
register.
Metacello new
repository: 'gitlocal://', location fullName;
baseline: 'Fossil';
load.
spec project: 'Fossil'
]

View File

@ -0,0 +1 @@
Package { #name : #BaselineOfGrafoscopioUtils }