Skip to content

Commit b63324e

Browse files
committed
Issue #53: have to update testTravisCI.sh for gs_master_3.1.2 travis tests
1 parent 1b9d156 commit b63324e

File tree

1 file changed

+11
-32
lines changed

1 file changed

+11
-32
lines changed

tests/testTravisCI.sh

+11-32
Original file line numberDiff line numberDiff line change
@@ -37,41 +37,20 @@ cat - >> $OUTPUT_PATH << EOF
3737
"Load and run tests to be performed by TravisCI"
3838
Transcript cr; show: 'travis---->travisCI.st'.
3939
40-
GsDeployer deploy: [
41-
| glassVersion |
42-
glassVersion := ConfigurationOfGLASS project currentVersion.
43-
glassVersion versionNumber < '1.0-beta.9.3' asMetacelloVersionNumber
44-
ifTrue: [
45-
Transcript
46-
cr;
47-
show: '-----Upgrading GLASS to 1.0-beta.9.3'.
48-
GsDeployer deploy: [
49-
Gofer new
50-
package: 'ConfigurationOfGLASS';
51-
url: 'http://seaside.gemtalksystems.com/ss/MetacelloRepository';
52-
load.
53-
(((System stoneVersionAt: 'gsVersion') beginsWith: '2.') and: [glassVersion versionNumber < '1.0-beta.9.2' asMetacelloVersionNumber])
54-
ifTrue: [
55-
((Smalltalk at: #ConfigurationOfGLASS) project version: '1.0-beta.9.2') load ].
56-
((Smalltalk at: #ConfigurationOfGLASS) project version: '1.0-beta.9.3') load.
57-
] ]
58-
ifFalse: [
59-
Transcript
60-
cr;
61-
show: '-----GLASS already upgraded to 1.0-beta.9.3' ] ].
40+
"Upgrade Grease and Metacello"
41+
Gofer new
42+
package: 'GsUpgrader-Core';
43+
url: 'http://ss3.gemtalksystems.com/ss/gsUpgrader';
44+
load.
45+
(Smalltalk at: #GsUpgrader) upgradeGrease.
6246
6347
GsDeployer deploy: [
64-
"Explicitly load latest Grease configuration, since we're loading the #bleeding edge"
65-
Metacello new
66-
configuration: 'Grease';
67-
repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
68-
get.
69-
7048
"Load the configuration or baseline"
7149
Metacello new
72-
$PROJECT_LINE
73-
$VERSION_LINE
74-
$REPOSITORY_LINE
50+
$PROJECT_LINE
51+
$VERSION_LINE
52+
$REPOSITORY_LINE
53+
onLock: [:ex | ex honor];
7554
load: #( ${LOADS} )
7655
].
7756
@@ -85,4 +64,4 @@ EOF
8564
cat $OUTPUT_PATH
8665

8766
$BUILDER_CI_HOME/testTravisCI.sh "$@"
88-
if [[ $? != 0 ]] ; then exit 1; fi
67+
if [[ $? != 0 ]] ; then exit 1; fi

0 commit comments

Comments
 (0)