Skip to content

Commit

Permalink
add squeak 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pdebruic committed Aug 21, 2015
1 parent a19a039 commit ca3e783
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ env:
- ST=Squeak-4.4
- ST=Squeak-4.5
- ST=Squeak-4.6
- ST=Squeak-5.0
- ST=GemStone-2.4.4.1
- ST=GemStone-2.4.5
- ST=GemStone-2.4.6
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

case "$ST" in

PharoCore-1.1|PharoCore-1.2|PharoCore-1.3|Pharo-1.4|Pharo-*|Squeak-4.3|Squeak4.3|Squeak-4.4|Squeak-4.5|Squeak-4.6|Squeak-Trunk)
PharoCore-1.1|PharoCore-1.2|PharoCore-1.3|Pharo-1.4|Pharo-*|Squeak-4.3|Squeak4.3|Squeak-4.4|Squeak-4.5|Squeak-4.6|Squeak-5.0|Squeak-Trunk)
./build_client.sh "$@"
if [[ $? != 0 ]] ; then exit 1; fi
exit 0
Expand Down
14 changes: 14 additions & 0 deletions build_client_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,20 @@ case "$ST" in
IMAGE_BASE_NAME=Squeak4.6-15102
mv *.sources $SOURCES_PATH
;;
# Squeak-5.0
Squeak-5.0)
cd $IMAGES_PATH
# 4.3 stores things in a Squeak4.3 directory. 5.0 doesn't.
# So we mimic the behaviour of 4.3.
mkdir -p Squeak4.0
cd Squeak5.0
wget http://ftp.squeak.org/5.0/Squeak45.0-15113.zip
unzip Squeak5.0-15113.zip
wget http://ftp.squeak.org/sources_files/SqueakV50.sources.gz
gunzip SqueakV50.sources.gz
IMAGE_BASE_NAME=Squeak5.0-15113
mv *.sources $SOURCES_PATH
;;
# Squeak-Trunk
Squeak-Trunk)
cd $IMAGES_PATH
Expand Down

0 comments on commit ca3e783

Please sign in to comment.