forked from hpi-swa/smalltalkCI
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue hpi-swa#105: add SmalltalkCI class>>loadCIFor:projectDirectory:…
…, SmalltalkCI class>>runCIFor:projectDirectory:, SmalltalkCI class>>testCIFor:projectDirectory: and supporting methods
- Loading branch information
1 parent
b28fec6
commit 1f0c9a1
Showing
8 changed files
with
44 additions
and
8 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/loadCIFor.projectDirectory..st
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,7 @@ | ||
executing | ||
loadCIFor: aFilenameString projectDirectory: aDirectoryPathString | ||
^ self platformClass basicNew | ||
initialize; | ||
readSTONSpec: aFilenameString; | ||
projectDirectory: aDirectoryPathString; | ||
runCI |
7 changes: 7 additions & 0 deletions
7
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/runCIFor.projectDirectory..st
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,7 @@ | ||
executing | ||
runCIFor: aFilenameString projectDirectory: aDirectoryPathString | ||
^ self platformClass basicNew | ||
initialize; | ||
readSTONSpec: aFilenameString; | ||
projectDirectory: aDirectoryPathString; | ||
runCI |
7 changes: 7 additions & 0 deletions
7
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/testCIFor.projectDirectory..st
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,7 @@ | ||
executing | ||
testCIFor: aFilenameString projectDirectory: aDirectoryPathString | ||
^ self platformClass basicNew | ||
initialize; | ||
readSTONSpec: aFilenameString; | ||
projectDirectory: aDirectoryPathString; | ||
testCI |
5 changes: 5 additions & 0 deletions
5
repository/SmalltalkCI-Core.package/SmalltalkCI.class/instance/loadCI.st
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,5 @@ | ||
executing | ||
loadCI | ||
self prepareForCI. | ||
self loadProjects. | ||
self finishUpAfterCI |
8 changes: 4 additions & 4 deletions
8
repository/SmalltalkCI-Core.package/SmalltalkCI.class/instance/runCI.st
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,6 +1,6 @@ | ||
executing | ||
runCI | ||
self prepareForCI. | ||
self loadProjects. | ||
self runTests. | ||
self finishUpAfterCI. | ||
self prepareForCI. | ||
self loadProjects. | ||
self runTests. | ||
self finishUpAfterCI |
5 changes: 5 additions & 0 deletions
5
repository/SmalltalkCI-Core.package/SmalltalkCI.class/instance/testCI.st
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,5 @@ | ||
executing | ||
testCI | ||
self prepareForCI. | ||
self runTests. | ||
self finishUpAfterCI |
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 |
---|---|---|
@@ -1 +1 @@ | ||
(name 'SmalltalkCI-Core-TravisCI.4' message 'Issue #88: looks like the fix is to force a new version of the baseline to be loaded using Metacello `get`...' id '9bec7e35-41b6-4665-a648-936776195281' date '03/18/2016' time '12:06:42' author 'TravisCI' ancestors ((name 'SmalltalkCI-Core-dkh.3' message ' Merging SmalltalkCI packages from gemstone repo to main repo: fix a coupld of SmallCI bugs plus mods needed by GemStone and possibly useful for Pharo and/or Squeak as well' id '56dd280f-fbbd-47e2-80e5-70d93812c67a' date '02/23/2016' time '13:42:58' author 'dkh' ancestors ((name 'SmalltalkCI-Core-fn.2' message 'Remove STON-related code' id '78636a4a-1241-41c5-884b-c2b9143e9751' date '02/22/2016' time '09:56:40' author 'fn' ancestors ((name 'SmalltalkCI-Core-fn.1' message 'Export SmalltalkCI-Core with FileTree' id 'e257d0e3-d4ee-4d96-8e52-0f9a25801c5a' date '02/21/2016' time '10:02:31' author 'fn' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) | ||
(name 'SmalltalkCI-Core-dkh.5' message 'Issue #105: add SmalltalkCI class>>loadCIFor:projectDirectory:, SmalltalkCI class>>runCIFor:projectDirectory:, SmalltalkCI class>>testCIFor:projectDirectory: and supporting methods' id '9185ad3e-f300-44cc-b5e1-4926d14bb277' date '03/31/2016' time '15:09:13' author 'dkh' ancestors ((name 'SmalltalkCI-Core-TravisCI.4' message 'Issue #88: looks like the fix is to force a new version of the baseline to be loaded using Metacello `get`...' id '9bec7e35-41b6-4665-a648-936776195281' date '03/18/2016' time '12:06:42' author 'TravisCI' ancestors ((name 'SmalltalkCI-Core-dkh.3' message ' Merging SmalltalkCI packages from gemstone repo to main repo: fix a coupld of SmallCI bugs plus mods needed by GemStone and possibly useful for Pharo and/or Squeak as well' id '56dd280f-fbbd-47e2-80e5-70d93812c67a' date '02/23/2016' time '13:42:58' author 'dkh' ancestors ((name 'SmalltalkCI-Core-fn.2' message 'Remove STON-related code' id '78636a4a-1241-41c5-884b-c2b9143e9751' date '02/22/2016' time '09:56:40' author 'fn' ancestors ((name 'SmalltalkCI-Core-fn.1' message 'Export SmalltalkCI-Core with FileTree' id 'e257d0e3-d4ee-4d96-8e52-0f9a25801c5a' date '02/21/2016' time '10:02:31' author 'fn' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) |