File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed
Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ language: erlang
22
33env :
44
5- - ST=Pharo-1.4 BASELINE=Grease LOADS=" Tests" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
6- - ST=Pharo-2.0 BASELINE=Grease LOADS=" Tests" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
7- - ST=Pharo-3.0 BASELINE=Grease LOADS=" Tests" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
8- - ST=GemStone-2.4.4.1 BASELINE=Grease LOADS=" Tests" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
9- - ST=GemStone-3.1.0.5 BASELINE=Grease LOADS=" Tests" REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
5+ - ST=Pharo-1.4 BASELINE=Grease LOADS=Tests REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
6+ - ST=Pharo-2.0 BASELINE=Grease LOADS=Tests REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
7+ - ST=Pharo-3.0 BASELINE=Grease LOADS=Tests REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
8+ - ST=GemStone-2.4.4.1 BASELINE=Grease LOADS=Tests REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
9+ - ST=GemStone-3.1.0.5 BASELINE=Grease LOADS=Tests REPOSITORY="filetree://${TRAVIS_BUILD_DIR}/repository"
1010
1111install :
1212 - export PROJECT_HOME="$(pwd)"
Original file line number Diff line number Diff line change @@ -34,6 +34,16 @@ REPOSITORY_LINE=" repository: '$REPOSITORY';"
3434OUTPUT_PATH=" ${PROJECT_HOME} /tests/travisCI.st"
3535
3636cat - >> $OUTPUT_PATH << EOF
37+ (Smalltalk includesKey: #UserGlobals) ifTrue:[
38+ "Load latest GLASS1 when on Gemstone"
39+ [ Metacello new
40+ baseline: 'GLASS1';
41+ repository: 'github://glassdb/glass:master/repository';
42+ load.
43+ ] on: Warning
44+ do:[:ex | Transcript show: ex greaseString. ex resume].
45+ ].
46+
3747 Transcript cr; show: 'travis--->${OUTPUT_PATH} '.
3848 "Load the configuration or baseline"
3949 Metacello new
You can’t perform that action at this time.
0 commit comments