Skip to content

Commit

Permalink
Add more components
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Sep 14, 2023
1 parent f188135 commit 6b2c6ad
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/loading-gs64-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
matrix:
load-spec:
- Core
- Dependent-SUnit-Extensions
- Deployment
- JSON-RPC
name: GS64 + ${{ matrix.load-spec }}
steps:
- uses: actions/checkout@v3
Expand Down
20 changes: 20 additions & 0 deletions rowan/components/Dependent-SUnit-Extensions.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
RwSimpleProjectLoadComponentV2 {
#name : 'Dependent-SUnit-Extensions',
#condition : 'sunit',
#projectNames : [ ],
#componentNames : [
'Core'
],
#packageNames : [
'Stargate-SUnit-Model'
],
#conditionalPackageMapSpecs : {
'gemstone' : {
'allusers' : {
#packageNameToPlatformPropertiesMap : {
'Stargate-SUnit-Model' : { 'symbolDictName' : 'Stargate' }
}
}
}
}
}
8 changes: 8 additions & 0 deletions rowan/components/Deployment.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
RwSimpleProjectLoadComponentV2 {
#name : 'Deployment',
#projectNames : [ ],
#componentNames : [
'JSON-RPC'
],
#packageNames : [ ]
}
21 changes: 21 additions & 0 deletions rowan/components/JSON-RPC.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
RwSimpleProjectLoadComponentV2 {
#name : 'JSON-RPC',
#projectNames : [
'JRPC'
],
#componentNames : [
'Core'
],
#packageNames : [
'Stargate-JSON-RPC'
],
#conditionalPackageMapSpecs : {
'gemstone' : {
'allusers' : {
#packageNameToPlatformPropertiesMap : {
'Stargate-JSON-RPC' : { 'symbolDictName' : 'Stargate' }
}
}
}
}
}
10 changes: 10 additions & 0 deletions rowan/projects/JRPC.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
RwLoadSpecificationV2 {
#specName: 'JRPC',
#projectName : 'JRPC',
#gitUrl : 'https://github.com/ba-st-dependencies/JRPC.git',
#revision : 'v4',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Deployment'
]
}
12 changes: 12 additions & 0 deletions rowan/specs/Stargate-Dependent-SUnit-Extensions.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
RwLoadSpecificationV2 {
#specName: 'Stargate-Dependent-SUnit-Extensions',
#projectName : 'Stargate',
#diskUrl : 'Stargate',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Dependent-SUnit-Extensions'
],
#customConditionalAttributes : [
'sunit'
]
}
9 changes: 9 additions & 0 deletions rowan/specs/Stargate-Deployment.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
RwLoadSpecificationV2 {
#specName: 'Stargate-Deployment',
#projectName : 'Stargate',
#diskUrl : 'Stargate',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Deployment'
]
}
9 changes: 9 additions & 0 deletions rowan/specs/Stargate-JSON-RPC.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
RwLoadSpecificationV2 {
#specName: 'Stargate-JSON-RPC',
#projectName : 'Stargate',
#diskUrl : 'Stargate',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'JSON-RPC'
]
}

0 comments on commit 6b2c6ad

Please sign in to comment.