-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code clean-up and more commentary; local build now works on Windows, too
- Loading branch information
1 parent
e4624d5
commit 8b730ce
Showing
24 changed files
with
586 additions
and
421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,7 @@ | |
*.cer | ||
secret*/ | ||
.secret-*.zip | ||
smalltalk-ci/repository/** | ||
tmp/** | ||
build/** | ||
product/** |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
readonly HOME_DIR="$(pwd)" | ||
readonly HOME_PATH="$(pwd)" | ||
|
||
readonly FILES_BASE="http://files.squeak.org/base" | ||
readonly RELEASE_URL="${FILES_BASE}/${SMALLTALK_VERSION/Etoys/Squeak}" | ||
readonly IMAGE_URL="${RELEASE_URL}/base.zip" | ||
|
||
readonly IMAGE_URL="${RELEASE_URL}/base.zip" | ||
readonly VM_BASE="${RELEASE_URL}" | ||
|
||
# version.sh file produced by image | ||
readonly VERSION_FILE="${TMP_DIR}/version.sh" | ||
readonly VM_LIN="vm-linux" | ||
readonly VM_MAC="vm-macos" | ||
readonly VM_WIN="vm-win" | ||
readonly VM_ARM6="vm-armv6" | ||
|
||
readonly ICONS_DIR="${HOME_DIR}/icons" | ||
readonly RELEASE_NOTES_DIR="${HOME_DIR}/release-notes" | ||
readonly ICONS_PATH="${HOME_PATH}/icons" | ||
readonly RELEASE_NOTES_PATH="${HOME_PATH}/release-notes" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.