Skip to content
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

Pharo13 #1423

Merged
merged 2 commits into from
Jul 10, 2024
Merged

Pharo13 #1423

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
smalltalk: [ Pharo64-12, Pharo64-11, Pharo64-10, Pharo64-9.0, Pharo64-8.0, GemStone64-3.7.1, GemStone64-3.6.8, GemStone64-3.5.8 ]
experimental: [ false ]
include:
- smalltalk: Pharo64-13
experimental: true
- smalltalk: Squeak64-6.0
experimental: true
- smalltalk: Squeak64-5.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ baselines
baselinegettext: spec

spec
for: #(#'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x' #'gemstone')
for: #(#'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x' #'pharo13.x' #'gemstone')
do: [
spec
package: 'Seaside-Gettext-Core'
Expand All @@ -18,8 +18,9 @@ baselinegettext: spec
group: 'Gettext-Examples'
with: #('Seaside-Gettext' 'Seaside-Gettext-Examples');
group: 'Tests' with: #('Seaside-Tests-Gettext-Core' 'Gettext-Examples') ].

spec
for: #(#'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x')
for: #(#'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x' #'pharo13.x')
do: [
spec
package: 'Seaside-Pharo-Gettext-Core';
Expand All @@ -29,13 +30,11 @@ baselinegettext: spec
with: [ spec requires: 'Seaside-Pharo-Gettext-Core' ].
spec
group: 'Tests' with: #('Seaside-Tests-Pharo-Gettext') ].

spec
for: #(#'gemstone')
do: [
spec
package: 'Seaside-GemStone-Gettext-Core';
"package: 'Seaside-GemStone-Gettext-Examples';"
package: 'Seaside-Gettext-Core'
with: [ spec includes: #('Seaside-GemStone-Gettext-Core') ]";
package: 'Seaside-Gettext-Examples'
with: [ spec includes: #('Seaside-GemStone-Gettext-Examples') ]" ]
with: [ spec includes: #('Seaside-GemStone-Gettext-Core') ] ]
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ baselinepharo: spec
package: 'Seaside-Pharo-Tools-Spec2' with: [ spec requires: #('Seaside-Tools-Core') ] ].

spec
for: #(#'pharo10.x' #'pharo11.x' #'pharo12.x')
for: #(#'pharo10.x' #'pharo11.x' #'pharo12.x' #'pharo13.x')
do: [ spec
package: 'Seaside-Tools-Core' with: [ spec includes: #('Seaside-Pharo100-Tools-Spec2') ];
package: 'Seaside-Pharo100-Tools-Spec2' with: [ spec requires: #('Seaside-Tools-Core') ] ]
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ baselinerest: spec
].

spec
for: #('pharo9.x' 'pharo10.x' 'pharo11.x' 'pharo12.x')
for: #('pharo9.x' 'pharo10.x' 'pharo11.x' 'pharo12.x' 'pharo13.x')
do:[
spec
package: 'Seaside-Pharo90-REST-Core';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ baselineslime: spec
group: 'Development Tests' with: #('Seaside-Tests-Slime') ].

spec
for: #(#'pharo10.x' #'pharo11.x' #'pharo12.x')
for: #(#'pharo10.x' #'pharo11.x' #'pharo12.x' #'pharo13.x')
do: [
spec
package: 'Seaside-Pharo110-Slime' with: [ spec requires: #('Grease Slime') ];
Expand Down
Loading