-
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 #63 from ba-st/gemstone64
Add support for Gemstone 64
- Loading branch information
Showing
87 changed files
with
1,032 additions
and
579 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: 'GS64 Components Loading' | ||
on: | ||
- push | ||
- pull_request | ||
- workflow_dispatch | ||
jobs: | ||
component-loading: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
load-spec: | ||
- Core | ||
- API-Client | ||
- Dependent-SUnit-Extensions | ||
- Service-Discovery | ||
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: 'Superluminal' | ||
load_spec: 'Superluminal-${{ 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: 'GS64 Unit Tests' | ||
on: | ||
- push | ||
- pull_request | ||
- workflow_dispatch | ||
jobs: | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
name: GS64 Unit Tests | ||
services: | ||
httpbin: | ||
image: fortizpenaloza/httpbin | ||
memcached: | ||
image: memcached:1.6.7-alpine | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Load Image and Run Tests | ||
uses: ba-st-actions/gs64-ci@v2 | ||
with: | ||
project_name: 'Superluminal' | ||
run_tests: 'true' | ||
env: | ||
CI_MEMCACHED_HOSTNAME: memcached | ||
CI_HTTPBIN_HOSTNAME: httpbin |
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,23 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'API-Client', | ||
#projectNames : [ | ||
'Memcached' | ||
], | ||
#componentNames : [ | ||
'Core' | ||
], | ||
#packageNames : [ | ||
'Superluminal-RESTfulAPI', | ||
'Superluminal-RESTfulAPI-Extensions' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Superluminal-RESTfulAPI' : { 'symbolDictName' : 'Superluminal' }, | ||
'Superluminal-RESTfulAPI-Extensions' : { 'symbolDictName' : 'Zinc' } | ||
} | ||
} | ||
} | ||
} | ||
} |
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,21 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Core', | ||
#projectNames : [ | ||
'Hyperspace' | ||
], | ||
#componentNames : [ ], | ||
#packageNames : [ | ||
'Superluminal-Model', | ||
'Superluminal-Model-Extensions' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Superluminal-Model' : { 'symbolDictName' : 'Superluminal' }, | ||
'Superluminal-Model-Extensions' : { 'symbolDictName' : 'Globals' } | ||
} | ||
} | ||
} | ||
} | ||
} |
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 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Dependent-SUnit-Extensions', | ||
#condition : 'sunit', | ||
#projectNames : [ | ||
'Teachable' | ||
], | ||
#componentNames : [ | ||
'Core' | ||
], | ||
#packageNames : [ | ||
'Superluminal-SUnit-Model' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Superluminal-SUnit-Model' : { 'symbolDictName' : 'Superluminal' } | ||
} | ||
} | ||
} | ||
} | ||
} |
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 : 'Service-Discovery', | ||
#projectNames : [ ], | ||
#componentNames : [ | ||
'API-Client' | ||
], | ||
#packageNames : [ | ||
'Superluminal-Service-Discovery' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Superluminal-Service-Discovery' : { 'symbolDictName' : 'Superluminal' } | ||
} | ||
} | ||
} | ||
} | ||
} |
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,29 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Tests', | ||
#condition : 'tests', | ||
#projectNames : [ | ||
'Teapot' | ||
], | ||
#componentNames : [ | ||
'Service-Discovery', | ||
'Dependent-SUnit-Extensions' | ||
], | ||
#packageNames : [ | ||
'Superluminal-Model-Tests', | ||
'Superluminal-Model-Tests-Extensions', | ||
'Superluminal-RESTfulAPI-Tests', | ||
'Superluminal-Service-Discovery-Tests' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Superluminal-Model-Tests' : { 'symbolDictName' : 'Superluminal' }, | ||
'Superluminal-Model-Tests-Extensions' : { 'symbolDictName' : 'Globals' }, | ||
'Superluminal-RESTfulAPI-Tests' : { 'symbolDictName' : 'Superluminal' }, | ||
'Superluminal-Service-Discovery-Tests' : { 'symbolDictName' : 'Superluminal' } | ||
} | ||
} | ||
} | ||
} | ||
} |
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,10 @@ | ||
RwProjectSpecificationV2 { | ||
#specName : 'project', | ||
#projectSpecPath : 'rowan', | ||
#componentsPath : 'rowan/components', | ||
#packagesPath : 'source', | ||
#projectsPath : 'rowan/projects', | ||
#specsPath : 'rowan/specs', | ||
#packageFormat : 'tonel', | ||
#packageConvention : 'Rowan' | ||
} |
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: 'Hyperspace', | ||
#projectName : 'Hyperspace', | ||
#gitUrl : 'https://github.com/ba-st/Hyperspace.git', | ||
#revision : 'v5', | ||
#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,10 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Memcached', | ||
#projectName : 'Memcached', | ||
#gitUrl : 'https://github.com/ba-st-dependencies/Memcached.git', | ||
#revision : 'v2', | ||
#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,10 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Teachable', | ||
#projectName : 'Teachable', | ||
#gitUrl : 'https://github.com/ba-st-dependencies/Teachable.git', | ||
#revision : 'v3', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Core' | ||
] | ||
} |
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,10 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Teapot', | ||
#projectName : 'Teapot', | ||
#gitUrl : 'https://github.com/ba-st-dependencies/Teapot.git', | ||
#revision : 'v2', | ||
#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,10 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Superluminal-API-Client', | ||
#projectName : 'Superluminal', | ||
#diskUrl : 'Superluminal', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'API-Client' | ||
], | ||
#comment : 'Loading spec for API-Client' | ||
} |
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: 'Superluminal-CI', | ||
#projectName : 'Superluminal', | ||
#diskUrl : 'Superluminal', | ||
#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,10 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Superluminal-Core', | ||
#projectName : 'Superluminal', | ||
#diskUrl : 'Superluminal', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Core' | ||
], | ||
#comment : 'Loading spec for Core' | ||
} |
Oops, something went wrong.