-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert API changes and use env vars instead
This makes it easier to detect whether smalltalkCI is running on a CI server (Travis/AppVeyor) or not
- Loading branch information
Showing
40 changed files
with
128 additions
and
81 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
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
4 changes: 0 additions & 4 deletions
4
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/buildEnvironment..st
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/buildEnvironment.st
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/getEnv..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,3 @@ | ||
compatibility | ||
getEnv: aKey | ||
^ self platformClass getEnv: aKey |
2 changes: 1 addition & 1 deletion
2
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/isAppVeyorBuild.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,3 +1,3 @@ | ||
helpers | ||
isAppVeyorBuild | ||
^ BuildEnvironment asString beginsWith: 'appveyor' | ||
^ (self getEnv: 'APPVEYOR') = 'True' |
2 changes: 1 addition & 1 deletion
2
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/isTravisBuild.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,3 +1,3 @@ | ||
helpers | ||
isTravisBuild | ||
^ BuildEnvironment asString beginsWith: 'travis' | ||
^ (self getEnv: 'TRAVIS') = 'true' |
6 changes: 4 additions & 2 deletions
6
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/load..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,3 +1,5 @@ | ||
executing | ||
public-api | ||
load: aFilenameString | ||
^ self load: aFilenameString env: nil | ||
^ self newInstance | ||
readSTONSpec: aFilenameString; | ||
load |
6 changes: 0 additions & 6 deletions
6
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/load.env..st
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/test..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,3 +1,3 @@ | ||
executing | ||
public-api | ||
test: aFilenameString | ||
^ self test: aFilenameString named: self defaultSuiteName |
7 changes: 5 additions & 2 deletions
7
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/test.named..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,3 +1,6 @@ | ||
executing | ||
public-api | ||
test: aFilenameString named: aString | ||
^ self test: aFilenameString named: aString env: nil | ||
^ self newInstance | ||
readSTONSpec: aFilenameString; | ||
suiteName: aString; | ||
test |
7 changes: 0 additions & 7 deletions
7
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/test.named.env..st
This file was deleted.
Oops, something went wrong.
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
3 changes: 1 addition & 2 deletions
3
repository/SmalltalkCI-Core.package/SmalltalkCI.class/properties.json
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
Large diffs are not rendered by default.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
repository/SmalltalkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/getEnv..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,3 @@ | ||
compatibility | ||
getEnv: aKey | ||
^ (Smalltalk at: #System) gemEnvironmentVariable: aKey |
8 changes: 0 additions & 8 deletions
8
...alkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/load.env.projectDirectory..st
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...alltalkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/load.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
2 changes: 1 addition & 1 deletion
2
repository/SmalltalkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/loadAndTest..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,4 +1,4 @@ | ||
executing | ||
public-api | ||
loadAndTest: aFilenameString | ||
^ self | ||
basicNew initialize; | ||
|
2 changes: 1 addition & 1 deletion
2
...alkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/loadAndTest.produceXMLLog..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,4 +1,4 @@ | ||
executing | ||
public-api | ||
loadAndTest: aFilenameString produceXMLLog: produceXMLLog | ||
^ self basicNew | ||
initialize; | ||
|
2 changes: 1 addition & 1 deletion
2
...alkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/loadAndTest.xmlLogDirPath..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,4 +1,4 @@ | ||
executing-deprecated | ||
public-api | ||
loadAndTest: aFilenameString xmlLogDirPath: aString | ||
^ self basicNew | ||
initialize; | ||
|
8 changes: 0 additions & 8 deletions
8
...lltalkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/test.env.xmlLogDirPath..st
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...alltalkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/test.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
7 changes: 7 additions & 0 deletions
7
.../SmalltalkCI-GemStone-Core.package/SmalltalkCIGemstone.class/class/test.xmlLogDirPath..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 @@ | ||
public-api | ||
test: aFilenameString xmlLogDirPath: aString | ||
^ self basicNew | ||
initialize; | ||
xmlLogDirPath: aString; | ||
readSTONSpec: aFilenameString; | ||
test |
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
2 changes: 1 addition & 1 deletion
2
repository/SmalltalkCI-GemStone-Core.package/monticello.meta/version
Large diffs are not rendered by default.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
repository/SmalltalkCI-Pharo-Core.package/SmalltalkCIPharo.class/class/getEnv..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,3 @@ | ||
compatibility | ||
getEnv: aKey | ||
^ (Smalltalk at: #OSEnvironment) default getEnv: aKey |
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
2 changes: 1 addition & 1 deletion
2
repository/SmalltalkCI-Pharo-Core.package/monticello.meta/version
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-Pharo-Core-fn.27' message 'Move coverage reporting into image using SCICodeCoverage' id '318ac603-4897-4d45-8599-61fca6e6ccdf' date '8 October 2016' time '4:54:38.628 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.26' message 'Add platform-specific forceNewFileNamed:' id '1e8c9072-d486-4a5f-af45-12e8c29333b9' date '4 October 2016' time '6:04:21.358 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.25' message 'Add Pharo-specific TestRunner class and methodDictOf:' id 'db65ae72-f581-4a62-a8ca-752cf05f6338' date '4 October 2016' time '5:29:46.386 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.24' message 'Do not close image when resuming' id '0ab708a1-fef3-406b-b436-362a395a715d' date '4 October 2016' time '4:43:43.619 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.23' message 'Add platform-specific stringFor:maxDecimalPlaces:' id 'b3f2480e-a1e0-4d1c-a908-dfc514db405a' date '28 September 2016' time '11:58:45.926 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.22' message 'Use stdout consistently' id '0ce01339-aa9e-4f5d-aa9e-e0fc49099033' date '27 September 2016' time '8:41:12.527 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.21' message 'Add platform-specific imagePath' id '69b121c0-60cc-4d3e-af2f-121f8c74121a' date '27 September 2016' time '8:14:45.642 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.20' message 'Add saveImage' id 'f33f05f7-f6ff-493b-aac5-da39ebbe6855' date '25 September 2016' time '8:02:20.063 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.19' message 'Fix file references' id 'be5de605-b1bc-45df-b532-c2fbe445119c' date '25 September 2016' time '7:58:05.068 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.18' message 'Update Pharo integration to use new SCITestRunner' id '356b0a4b-7010-467f-aaa2-9ce1ee01f6ab' date '25 September 2016' time '7:54:33.926 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.17' message 'Add closeImageWithExitCode:' id '64506e16-f53d-4be7-8822-031e12adb757' date '2 July 2016' time '4:53:08.359 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.16' message 'Use custom testrunner' id '56034ab0-f56e-46e0-b787-dea09c5add7f' date '2 July 2016' time '4:34:50.892 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.15' message 'Bugfix for Pharo' id 'd01b43a1-c1da-4a66-bf36-34ab6610c5eb' date '25 June 2016' time '12:21:38.401 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.14' message 'Update for Windows compatibility' id 'b10dd3c7-a95b-492b-b3c0-60336e6fc9fd' date '24 June 2016' time '11:11:30.957 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.13' message 'Fix for coverage testing in Pharo.' id '8c63bd47-45a6-40c7-92a5-1e2e669aea6c' date '24 June 2016' time '3:01:36.371 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.12' message 'Cleanup' id '241d1dbe-0940-4303-868d-b07b569e1daa' date '22 June 2016' time '1:22:56.719 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.11' message 'Pharo-specific classesInPackage:' id '1c5c125a-b286-4af2-908f-c0d55a57f0a7' date '22 June 2016' time '9:19:45.193 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.10' message 'Update classFrom logic' id '26ab22ca-b5a4-4135-ab77-6156c13b1cb2' date '22 June 2016' time '12:49:44.936 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.9' message 'Allow explicit #packages in #testing (issue #58).' id 'dbab9823-6333-4717-976c-72243b312112' date '16 June 2016' time '10:11:23.169 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.8' message 'Fix for Pharo 4 and 3' id '069e56f6-63e7-4072-bcb8-e5e9a6609f3b' date '13 June 2016' time '1:50:22.628 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.7' message 'Rename loadAllCompatibleSpecs' id '656281de-a792-459c-8d9c-9f3caec2a3ed' date '13 June 2016' time '1:35:00.877 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.6' message 'Add SCIPharoMonticelloLoadSpec' id '0482186c-e171-4eaa-99b5-51582d5129f7' date '13 June 2016' time '9:58:57.301 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.5' message 'Improve compatibility to GemStone #144' id '0c94850e-0b6f-4232-a6c9-d1487ac934d5' date '19 May 2016' time '10:51:10.555 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.4' message 'Rename loadProjects to loadAllCompatibleSpecs' id '58f9f90d-a58e-409d-814c-805cad9b4694' date '8 May 2016' time '3:09:06.005 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.3' message 'Move packageNameForClass: to class-side' id '2258d70f-c84d-441a-9e13-f4caba56a3f3' date '19 April 2016' time '6:43:39.025 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.2' message 'Improve coverage testing' id 'c72c59eb-5567-4b06-abf1-c76a4e536ad8' date '19 April 2016' time '6:32:55.076 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.1' message 'Rename SmalltalkCI-Pharo to SmalltalkCI-Pharo-Core' id '73d7da02-a1a6-4779-bb71-a8fb8e77ebb0' date '15 April 2016' time '11:40:35.765158 pm' author 'fn' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) | ||
(name 'SmalltalkCI-Pharo-Core-fn.28' message 'Add getEnv:' id '780fe4f1-e678-461e-af51-cc86aa70da08' date '9 October 2016' time '9:48:38.808 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.27' message 'Move coverage reporting into image using SCICodeCoverage' id '318ac603-4897-4d45-8599-61fca6e6ccdf' date '8 October 2016' time '4:54:38.628 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.26' message 'Add platform-specific forceNewFileNamed:' id '1e8c9072-d486-4a5f-af45-12e8c29333b9' date '4 October 2016' time '6:04:21.358 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.25' message 'Add Pharo-specific TestRunner class and methodDictOf:' id 'db65ae72-f581-4a62-a8ca-752cf05f6338' date '4 October 2016' time '5:29:46.386 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.24' message 'Do not close image when resuming' id '0ab708a1-fef3-406b-b436-362a395a715d' date '4 October 2016' time '4:43:43.619 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.23' message 'Add platform-specific stringFor:maxDecimalPlaces:' id 'b3f2480e-a1e0-4d1c-a908-dfc514db405a' date '28 September 2016' time '11:58:45.926 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.22' message 'Use stdout consistently' id '0ce01339-aa9e-4f5d-aa9e-e0fc49099033' date '27 September 2016' time '8:41:12.527 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.21' message 'Add platform-specific imagePath' id '69b121c0-60cc-4d3e-af2f-121f8c74121a' date '27 September 2016' time '8:14:45.642 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.20' message 'Add saveImage' id 'f33f05f7-f6ff-493b-aac5-da39ebbe6855' date '25 September 2016' time '8:02:20.063 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.19' message 'Fix file references' id 'be5de605-b1bc-45df-b532-c2fbe445119c' date '25 September 2016' time '7:58:05.068 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.18' message 'Update Pharo integration to use new SCITestRunner' id '356b0a4b-7010-467f-aaa2-9ce1ee01f6ab' date '25 September 2016' time '7:54:33.926 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.17' message 'Add closeImageWithExitCode:' id '64506e16-f53d-4be7-8822-031e12adb757' date '2 July 2016' time '4:53:08.359 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.16' message 'Use custom testrunner' id '56034ab0-f56e-46e0-b787-dea09c5add7f' date '2 July 2016' time '4:34:50.892 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.15' message 'Bugfix for Pharo' id 'd01b43a1-c1da-4a66-bf36-34ab6610c5eb' date '25 June 2016' time '12:21:38.401 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.14' message 'Update for Windows compatibility' id 'b10dd3c7-a95b-492b-b3c0-60336e6fc9fd' date '24 June 2016' time '11:11:30.957 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.13' message 'Fix for coverage testing in Pharo.' id '8c63bd47-45a6-40c7-92a5-1e2e669aea6c' date '24 June 2016' time '3:01:36.371 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.12' message 'Cleanup' id '241d1dbe-0940-4303-868d-b07b569e1daa' date '22 June 2016' time '1:22:56.719 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.11' message 'Pharo-specific classesInPackage:' id '1c5c125a-b286-4af2-908f-c0d55a57f0a7' date '22 June 2016' time '9:19:45.193 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.10' message 'Update classFrom logic' id '26ab22ca-b5a4-4135-ab77-6156c13b1cb2' date '22 June 2016' time '12:49:44.936 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.9' message 'Allow explicit #packages in #testing (issue #58).' id 'dbab9823-6333-4717-976c-72243b312112' date '16 June 2016' time '10:11:23.169 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.8' message 'Fix for Pharo 4 and 3' id '069e56f6-63e7-4072-bcb8-e5e9a6609f3b' date '13 June 2016' time '1:50:22.628 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.7' message 'Rename loadAllCompatibleSpecs' id '656281de-a792-459c-8d9c-9f3caec2a3ed' date '13 June 2016' time '1:35:00.877 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.6' message 'Add SCIPharoMonticelloLoadSpec' id '0482186c-e171-4eaa-99b5-51582d5129f7' date '13 June 2016' time '9:58:57.301 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.5' message 'Improve compatibility to GemStone #144' id '0c94850e-0b6f-4232-a6c9-d1487ac934d5' date '19 May 2016' time '10:51:10.555 am' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.4' message 'Rename loadProjects to loadAllCompatibleSpecs' id '58f9f90d-a58e-409d-814c-805cad9b4694' date '8 May 2016' time '3:09:06.005 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.3' message 'Move packageNameForClass: to class-side' id '2258d70f-c84d-441a-9e13-f4caba56a3f3' date '19 April 2016' time '6:43:39.025 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.2' message 'Improve coverage testing' id 'c72c59eb-5567-4b06-abf1-c76a4e536ad8' date '19 April 2016' time '6:32:55.076 pm' author 'fn' ancestors ((name 'SmalltalkCI-Pharo-Core-fn.1' message 'Rename SmalltalkCI-Pharo to SmalltalkCI-Pharo-Core' id '73d7da02-a1a6-4779-bb71-a8fb8e77ebb0' date '15 April 2016' time '11:40:35.765158 pm' author 'fn' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) |
5 changes: 5 additions & 0 deletions
5
repository/SmalltalkCI-Squeak-Core.package/SmalltalkCISqueak.class/class/getEnv..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 @@ | ||
compatibility | ||
getEnv: aKey | ||
self isWindows | ||
ifTrue: [ ^ self getEnvWindows: aKey ] | ||
ifFalse: [ ^ self getEnvUnix: aKey ] |
Oops, something went wrong.