Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Dependent-SUnit-Extensions component #92

Merged
merged 2 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/loading-gs64-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
matrix:
load-spec:
- Deployment
- Dependent-SUnit-Extensions
name: GS64 + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v3
Expand Down
11 changes: 11 additions & 0 deletions rowan/components/Dependent-SUnit-Extensions.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
RwSimpleProjectLoadComponentV2 {
#name : 'Dependent-SUnit-Extensions',
#condition : 'sunit',
#componentNames : [
'Deployment'
],
#projectNames : [
'Kepler'
],
#packageNames : [ ]
}
4 changes: 3 additions & 1 deletion rowan/components/Deployment.ston
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
RwSimpleProjectLoadComponentV2 {
#name : 'Deployment',
#postloadDoitName : 'scripts/deploymentPostLoad',
#projectNames : [ 'Kepler', 'SortFunctions' ],
#projectNames : [
'Kepler',
'SortFunctions' ],
#componentNames : [ ],
#packageNames : [
'Sagan-Core',
Expand Down
9 changes: 1 addition & 8 deletions rowan/components/scripts/deploymentPostLoad.st
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
| symbolDictionary |

symbolDictionary := Rowan image
symbolDictNamed: 'Sagan'
ifAbsent: [Error signal: 'Sagan symbol dictionary missing' ].

"Register system interfaces"
(symbolDictionary at: #RepositoryProviderSystem) registerInterfaces.
RepositoryProviderSystem registerInterfaces
3 changes: 2 additions & 1 deletion rowan/projects/Kepler.ston
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ RwLoadSpecificationV2 {
#revision : 'v6',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Deployment'
'Deployment',
'Dependent-SUnit-Extensions'
]
}
12 changes: 12 additions & 0 deletions rowan/specs/Sagan-Dependent-SUnit-Extensions.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
RwLoadSpecificationV2 {
#specName: 'Sagan-Dependent-SUnit-Extensions',
#projectName : 'Sagan',
#diskUrl : 'Sagan',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Dependent-SUnit-Extensions'
],
#customConditionalAttributes : [
'sunit'
]
}