-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from ba-st/gemstone64
Add support for GemStone 64
- Loading branch information
Showing
33 changed files
with
279 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 'GS64 Components Loading' | ||
on: | ||
- push | ||
- pull_request | ||
- workflow_dispatch | ||
jobs: | ||
component-loading: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
load-spec: | ||
- Deployment | ||
- Examples | ||
name: GS64 + ${{ matrix.load-spec }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Load component in image | ||
uses: ba-st-actions/gs64-ci@v2 | ||
with: | ||
project_name: 'Stargate-Consul' | ||
load_spec: 'Stargate-Consul-${{ matrix.load-spec }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: 'GS64 Unit Tests' | ||
on: | ||
- push | ||
- pull_request | ||
- workflow_dispatch | ||
jobs: | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
name: GS64 Unit Tests | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Load Image and Run Tests | ||
uses: ba-st-actions/gs64-ci@v2 | ||
with: | ||
project_name: 'Stargate-Consul' | ||
run_tests: 'true' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Deployment', | ||
#projectNames : [ | ||
'Stargate', | ||
'Superluminal' | ||
], | ||
#componentNames : [ ], | ||
#packageNames : [ | ||
'Stargate-Consul' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Stargate-Consul' : { 'symbolDictName' : 'Stargate' } | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Examples', | ||
#projectNames : [ ], | ||
#componentNames : [ | ||
'Deployment' | ||
], | ||
#packageNames : [ | ||
'Stargate-Consul-Examples' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Stargate-Consul-Examples' : { 'symbolDictName' : 'Stargate' } | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Tests', | ||
#condition : 'tests', | ||
#projectNames : [ ], | ||
#componentNames : [ | ||
'Deployment', | ||
'Examples' | ||
], | ||
#packageNames : [ | ||
'Stargate-Consul-Tests', | ||
'Stargate-Consul-Examples-Tests' | ||
|
||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Stargate-Consul-Tests' : { 'symbolDictName' : 'Stargate' }, | ||
'Stargate-Consul-Examples-Tests' : { 'symbolDictName' : 'Stargate' } | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
RwProjectSpecificationV2 { | ||
#specName : 'project', | ||
#projectSpecPath : 'rowan', | ||
#componentsPath : 'rowan/components', | ||
#packagesPath : 'source', | ||
#projectsPath : 'rowan/projects', | ||
#specsPath : 'rowan/specs', | ||
#packageFormat : 'tonel', | ||
#packageConvention : 'Rowan', | ||
#comment : 'Stargate Consul project specification' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Stargate', | ||
#projectName : 'Stargate', | ||
#gitUrl : 'https://github.com/ba-st/Stargate.git', | ||
#revision : 'v9', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Deployment', | ||
'Dependent-SUnit-Extensions' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Superluminal', | ||
#projectName : 'Superluminal', | ||
#gitUrl : 'https://github.com/ba-st/Superluminal.git', | ||
#revision : 'v5', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'API-Client', | ||
'Dependent-SUnit-Extensions' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Stargate-Consul-CI', | ||
#projectName : 'Stargate-Consul', | ||
#diskUrl : 'Stargate-Consul', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Tests' | ||
], | ||
#customConditionalAttributes : [ | ||
'tests', | ||
'sunit' | ||
], | ||
#comment : 'Loading spec for the continuous integration setup' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Stargate-Consul-Deployment', | ||
#projectName : 'Stargate-Consul', | ||
#diskUrl : 'Stargate-Consul', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Deployment' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Stargate-Consul-Examples', | ||
#projectName : 'Stargate-Consul', | ||
#diskUrl : 'Stargate-Consul', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Examples' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
#format : #tonel | ||
#format : #tonel, | ||
#convention : 'Rowan' | ||
} |
Oops, something went wrong.