X Tutup
Skip to content

Commit a164ba1

Browse files
committed
try to ignore load warning and use gemstone 3.2.2 for testing
1 parent efd5ff1 commit a164ba1

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
- ST=Squeak-4.4 BASELINE=Grease LOADS="'Tests'" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
99
- ST=GemStone-2.4.4.2 BASELINE=Grease LOADS="'Tests'" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
1010
- ST=GemStone-3.1.0.6 BASELINE=Grease LOADS="'Tests'" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
11-
- ST=GemStone-3.2.0 BASELINE=Grease LOADS="'Tests'" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
11+
- ST=GemStone-3.2.2 BASELINE=Grease LOADS="'Tests'" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
1212

1313
install:
1414
- export PROJECT_HOME="$(pwd)"

tests/testTravisCI.sh

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,15 @@ GsDeployer deploy: [
6464
Transcript cr; show: 'travis--->${OUTPUT_PATH}'.
6565
"Load the configuration or baseline"
6666
Metacello new
67-
$PROJECT_LINE
68-
$VERSION_LINE
69-
$REPOSITORY_LINE
70-
load: #( ${LOADS} ).
67+
$PROJECT_LINE
68+
$VERSION_LINE
69+
$REPOSITORY_LINE
70+
onWarning: [ :ex |
71+
Transcript
72+
cr;
73+
show: ex description.
74+
ex resume ];
75+
load: #( ${LOADS} ).
7176
"Run the tests"
7277
Smalltalk at: #Author ifPresent:[:author | author fullName: 'Travis'].
7378
((Smalltalk includesKey: #Utilities) and:[(Smalltalk at: #Utilities) respondsTo: #setAuthorInitials:]) ifTrue:[(Smalltalk at: #Utilities) setAuthorInitials: 'TCI'].

0 commit comments

Comments
 (0)
X Tutup