Skip to content

Commit

Permalink
Merge 68d9529 into 1fd569a
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Sep 21, 2020
2 parents 1fd569a + 68d9529 commit 75abeaf
Show file tree
Hide file tree
Showing 26 changed files with 1,397 additions and 128 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- name: Start httpbin
run: docker run -d -p 127.0.0.1:80:80 fortizpenaloza/httpbin
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-version: ${{ matrix.smalltalk }}
Expand Down
23 changes: 19 additions & 4 deletions source/BaselineOfSuperluminal/BaselineOfSuperluminal.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,33 @@ BaselineOfSuperluminal >> setUpDependencies: spec [

spec
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON:master/repository' ];
project: 'NeoJSON-Core' copyFrom: 'NeoJSON' with: [ spec loads: 'core' ]
project: 'NeoJSON-Core' copyFrom: 'NeoJSON' with: [ spec loads: 'core' ].

spec
baseline: 'ObjectPool' with: [ spec repository: 'github://pharo-ide/ObjectPool:v1.0.1' ];
project: 'ObjectPool-Core' copyFrom: 'ObjectPool' with: [ spec loads: 'Core' ].

]

{ #category : #baselines }
BaselineOfSuperluminal >> setUpPackages: spec [

spec
package: 'Superluminal-Model' with: [ spec requires: 'Hyperspace-Deployment' ];
package: 'Superluminal-Model' with: [ spec requires: #('Hyperspace-Deployment' 'NeoJSON-Core') ];
group: 'Deployment' with: 'Superluminal-Model'.

spec
package: 'Superluminal-RESTfulAPI'
with: [ spec requires: #('Superluminal-Model' 'ObjectPool-Core') ];
group: 'Deployment' with: 'Superluminal-RESTfulAPI'.

spec
package: 'Superluminal-Model-Tests'
with: [ spec requires: #('Superluminal-Model' 'Hyperspace-SUnit' 'NeoJSON-Core') ];
group: 'Tests' with: 'Superluminal-Model-Tests'
with: [ spec requires: #('Superluminal-Model' 'Hyperspace-SUnit') ];
group: 'Tests' with: 'Superluminal-Model-Tests'.

spec
package: 'Superluminal-RESTfulAPI-Tests'
with: [ spec requires: #('Superluminal-RESTfulAPI' 'Hyperspace-SUnit') ];
group: 'Tests' with: 'Superluminal-RESTfulAPI-Tests'
]

0 comments on commit 75abeaf

Please sign in to comment.