-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GH action to check Core loading in GS64
- Loading branch information
Showing
14 changed files
with
151 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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 | ||
name: GS64 + ${{ matrix.load-spec }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Load component in image | ||
uses: ba-st-actions/gs64-ci@v2 | ||
with: | ||
project_name: 'Stargate' | ||
load_spec: 'Stargate-${{ 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
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,33 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Core', | ||
#projectNames : [ | ||
'Hyperspace', | ||
'JSONWebToken', | ||
'Teapot' | ||
], | ||
#componentNames : [ ], | ||
#packageNames : [ | ||
'Stargate-Model', | ||
'Stargate-Extensions', | ||
'Stargate-GS64-Extensions', | ||
'Stargate-JSONWebToken-Extensions', | ||
'Stargate-NeoJSON-Extensions', | ||
'Stargate-Teapot-Extensions'. | ||
'Stargate-Zinc-Extensions' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Stargate-Model' : { 'symbolDictName' : 'Stargate' }, | ||
'Stargate-Extensions' : { 'symbolDictName' : 'Globals' }, | ||
'Stargate-GS64-Extensions' : { 'symbolDictName' : 'Globals' }, | ||
'Stargate-JSONWebToken-Extensions' : { 'symbolDictName' : 'JSONWebToken' }, | ||
'Stargate-NeoJSON-Extensions' : { 'symbolDictName' : 'NeoJSON' }, | ||
'Stargate-Teapot-Extensions' : { 'symbolDictName' : 'TeapotGS' }, | ||
'Stargate-Zinc-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,11 @@ | ||
RwProjectSpecificationV2 { | ||
#specName : 'project', | ||
#projectSpecPath : 'rowan', | ||
#componentsPath : 'rowan/components', | ||
#packagesPath : 'source', | ||
#projectsPath : 'rowan/projects', | ||
#specsPath : 'rowan/specs', | ||
#packageFormat : 'tonel', | ||
#packageConvention : 'Rowan', | ||
#comment : 'Stargate 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,10 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Hyperspace', | ||
#projectName : 'Hyperspace', | ||
#gitUrl : 'https://github.com/ba-st/Hyperspace.git', | ||
#revision : 'v5', | ||
#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: 'JSONWebToken', | ||
#projectName : 'JSONWebToken', | ||
#gitUrl : 'https://github.com/ba-st-dependencies/JSONWebToken.git', | ||
#revision : 'v1', | ||
#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: '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,9 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Stargate-Core', | ||
#projectName : 'Stargate', | ||
#diskUrl : 'Stargate', | ||
#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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
#format : #tonel | ||
#format : #tonel, | ||
#convention : 'Rowan' | ||
} |