-
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.
- Loading branch information
Showing
16 changed files
with
177 additions
and
10 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,19 @@ | ||
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, Dependent-SUnit-Extensions ] | ||
name: GS64 + ${{ matrix.load-spec }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Load component in image | ||
uses: ba-st-actions/gs64-ci@v1 | ||
with: | ||
project_name: 'Hyperspace' | ||
load_spec: 'Hyperspace-${{ 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Release Notifications | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
notify: | ||
|
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,15 @@ | ||
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@v3 | ||
- name: Load Image and Run Tests | ||
uses: ba-st-actions/gs64-ci@v1 | ||
with: | ||
project_name: 'Hyperspace' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Dependent-SUnit-Extensions', | ||
#condition : 'sunit', | ||
#projectNames : [ ], | ||
#componentNames : [ ], | ||
#packageNames : [ | ||
'Hyperspace-SUnit-Model' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Hyperspace-SUnit-Model' : { '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,23 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Deployment', | ||
#projectNames : [ | ||
'Zinc' | ||
], | ||
#componentNames : [ ], | ||
#packageNames : [ | ||
'Hyperspace-Model', | ||
'Hyperspace-Extensions', | ||
'Hyperspace-GS64-Extensions', | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Hyperspace-Model' : { 'symbolDictName' : 'Hyperspace' }, | ||
'Hyperspace-Extensions' : { 'symbolDictName' : 'Zinc' }, | ||
'Hyperspace-GS64-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,23 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Tests', | ||
#condition : 'tests', | ||
#projectNames : [ ], | ||
#componentNames : [ | ||
'Deployment', | ||
'Dependent-SUnit-Extensions' | ||
], | ||
#packageNames : [ | ||
'Hyperspace-Model-Tests', | ||
'Hyperspace-SUnit-Model-Tests' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Hyperspace-Model-Tests' : { 'symbolDictName' : 'Hyperspace' }, | ||
'Hyperspace-SUnit-Model-Tests' : { 'symbolDictName' : 'Hyperspace' } | ||
} | ||
} | ||
} | ||
} | ||
} |
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 : 'Hyperspace 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: 'Zinc', | ||
#projectName : 'Zinc', | ||
#gitUrl : 'https://github.com/ba-st-dependencies/Zinc.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,14 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Hyperspace-CI', | ||
#projectName : 'Hyperspace', | ||
#diskUrl : '/opt/gemstone/projects/Hyperspace', | ||
#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,12 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Hyperspace-CI', | ||
#projectName : 'Hyperspace', | ||
#diskUrl : '/opt/gemstone/projects/Hyperspace', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Dependent-SUnit-Extensions' | ||
], | ||
#customConditionalAttributes : [ | ||
'sunit' | ||
] | ||
} |
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: 'Hyperspace-CI', | ||
#projectName : 'Hyperspace', | ||
#diskUrl : '/opt/gemstone/projects/Hyperspace', | ||
#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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
#format : #tonel | ||
#format : #tonel, | ||
#convention : 'Rowan' | ||
} |