X Tutup
Skip to content

Commit dd41b5c

Browse files
committed
fix travis
1 parent b4874c1 commit dd41b5c

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ language: erlang
22

33
env:
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

1111
install:
1212
- export PROJECT_HOME="$(pwd)"

tests/testTravisCI.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@ REPOSITORY_LINE=" repository: '$REPOSITORY';"
3434
OUTPUT_PATH="${PROJECT_HOME}/tests/travisCI.st"
3535

3636
cat - >> $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

0 commit comments

Comments
 (0)
X Tutup