-
Notifications
You must be signed in to change notification settings - Fork 69
enable Pharo 14 #670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable Pharo 14 #670
Changes from all commits
4e3c753
41e972e
aef5505
b700694
b06ab14
d492a9d
dca51a2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ jobs: | |
- Squeak32-4.5 | ||
- Pharo64-stable | ||
- Pharo64-alpha | ||
- Pharo64-14 | ||
- Pharo64-13 | ||
- Pharo64-12 | ||
- Pharo64-11 | ||
|
@@ -48,10 +49,12 @@ jobs: | |
- Moose64-10 | ||
- Moose64-9.0 | ||
- Moose64-8.0 | ||
- GemStone64-3.5.3 | ||
- GemStone64-3.5.8 | ||
- GemStone64-3.6.8 | ||
- GemStone64-3.7.1 | ||
- GToolkit64-release | ||
timeout-minutes: [ 15 ] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't do anything |
||
exclude: # exclude 32bit builds on macOS and GemStone builds on windows | ||
- os: macos-latest | ||
smalltalk: Squeak32-trunk | ||
|
@@ -73,6 +76,8 @@ jobs: | |
smalltalk: Pharo64-10 | ||
- os: windows-2019 | ||
smalltalk: Pharo64-6.0 | ||
- os: windows-2019 | ||
smalltalk: GemStone64-3.5.3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here: are you sure? |
||
- os: windows-2019 | ||
smalltalk: GemStone64-3.5.8 | ||
- os: windows-2019 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Put back |
This file was deleted.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"class" : { | ||
"codeCoverageClass" : "MaxLeske 4/29/2024 19:25", | ||
"isPlatformCompatible" : "MaxLeske 4/29/2024 19:25"}, | ||
"instance" : { | ||
} } |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
"instvars" : [ ], | ||
"name" : "SmalltalkCIPharo13", | ||
"type" : "normal" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -19,6 +19,12 @@ test_get_image_url() { | |||||
image_url="$(pharo::get_image_url "Pharo64-stable")" | ||||||
assertEquals "get.pharo.org/64/stable" "${image_url}" | ||||||
|
||||||
image_url="$(pharo::get_image_url "Pharo64-14")" | ||||||
assertEquals "get.pharo.org/64/120" "${image_url}" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
image_url="$(pharo::get_image_url "Pharo64-13")" | ||||||
assertEquals "get.pharo.org/64/120" "${image_url}" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
image_url="$(pharo::get_image_url "Pharo64-12")" | ||||||
assertEquals "get.pharo.org/64/120" "${image_url}" | ||||||
|
||||||
|
@@ -34,6 +40,11 @@ test_get_image_url() { | |||||
image_url="$(pharo::get_image_url "Pharo64-8.0")" | ||||||
assertEquals "get.pharo.org/64/80" "${image_url}" | ||||||
|
||||||
image_url="$(pharo::get_image_url "Pharo32-14")" | ||||||
assertEquals "get.pharo.org/32/120" "${image_url}" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
image_url="$(pharo::get_image_url "Pharo32-13")" | ||||||
assertEquals "get.pharo.org/32/120" "${image_url}" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
image_url="$(pharo::get_image_url "Pharo32-12")" | ||||||
assertEquals "get.pharo.org/32/120" "${image_url}" | ||||||
|
@@ -90,6 +101,9 @@ test_get_vm_url() { | |||||
vm_url="$(pharo::get_vm_url "Pharo64-stable")" | ||||||
assertEquals "get.pharo.org/64/vm120" "${vm_url}" | ||||||
|
||||||
vm_url="$(pharo::get_vm_url "Pharo64-14")" | ||||||
assertEquals "get.pharo.org/64/vm130" "${vm_url}" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
vm_url="$(pharo::get_vm_url "Pharo64-13")" | ||||||
assertEquals "get.pharo.org/64/vm130" "${vm_url}" | ||||||
|
||||||
|
@@ -108,6 +122,8 @@ test_get_vm_url() { | |||||
vm_url="$(pharo::get_vm_url "Pharo64-8.0")" | ||||||
assertEquals "get.pharo.org/64/vm80" "${vm_url}" | ||||||
|
||||||
vm_url="$(pharo::get_vm_url "Pharo32-14")" | ||||||
assertEquals "get.pharo.org/vm130" "${vm_url}" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
vm_url="$(pharo::get_vm_url "Pharo32-13")" | ||||||
assertEquals "get.pharo.org/vm130" "${vm_url}" | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure that you want to add this GemStone version? There's probably a good reason for its absence.