Skip to content

Commit

Permalink
Add rowan metadata and activate CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Aug 4, 2023
1 parent c5be7fb commit d248b35
Show file tree
Hide file tree
Showing 9 changed files with 87 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/unit-tests-gs64.yml
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: 'Buoy'
run_tests: 'true'
3 changes: 3 additions & 0 deletions rowan/components/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Components

This directory contains component definitions for the project
21 changes: 21 additions & 0 deletions rowan/components/SUnit-Dependent-Extensions.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
RwSimpleProjectLoadComponentV2 {
#name : 'SUnit-Dependent-Extensions',
#condition : 'sunit',
#projectNames : [ ],
#componentNames : [ ],
#packageNames : [
'Buoy-SUnit-Model'
],
#conditionalPackageMapSpecs : {
'gemstone' : {
'allusers' : {
#packageNameToPlatformPropertiesMap : {
'Buoy-SUnit-Model' : {
'symbolDictName' : 'Globals'
}
}
}
}
},
#comment : 'Extensions to TestAsserter'
}
12 changes: 12 additions & 0 deletions rowan/components/Tests.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
RwSimpleProjectLoadComponentV2 {
#name : 'Tests',
#condition : 'tests',
#projectNames : [ ],
#componentNames : [
'SUnit-Dependent-Extensions'
],
#packageNames : [
'Buoy-SUnit-Tests'
],
#comment : ''
}
11 changes: 11 additions & 0 deletions rowan/project.ston
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 : 'This project aims to complement Pharo and GS64 adding useful extensions.'
}
3 changes: 3 additions & 0 deletions rowan/projects/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Projects

This directory contains loading specs for dependencies
17 changes: 17 additions & 0 deletions rowan/specs/Buoy-CI.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
RwLoadSpecificationV2 {
#specName: 'Buoy-CI',
#projectName : 'Buoy',
#diskUrl : '/opt/gemstone/projects/Buoy',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Tests'
],
#platformProperties : {
'gemstone' : {
'allusers' : {
#defaultSymbolDictName : 'Buoy'
}
}
},
#comment : 'Loading spec for the continuous integration setup'
}
3 changes: 3 additions & 0 deletions rowan/specs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Specs

This directory contains loading specs for this project
3 changes: 2 additions & 1 deletion source/.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
#format : #tonel
#format : #tonel
#convention : 'Rowan'
}

0 comments on commit d248b35

Please sign in to comment.