Skip to content

Commit

Permalink
Merge pull request #76 from ba-st/add-fuel-to-pharo12
Browse files Browse the repository at this point in the history
add stack trace fuel dumper to pharo12
  • Loading branch information
mtabacman authored Jul 25, 2024
2 parents c4693c1 + 1baa838 commit dbcbd30
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/.binary-stack-serialization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
fail-fast: false
matrix:
smalltalk:
- Pharo64-12
- Pharo64-11
- Pharo64-10
- Pharo64-9.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/loading-groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
smalltalk:
- Pharo64-10
- Pharo64-11
- Pharo64-12
load-spec:
- development
- deployment
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ jobs:
fail-fast: false
matrix:
smalltalk:
- Pharo64-10
- Pharo64-12
- Pharo64-11
- Pharo64-10
- Pharo64-9.0
- Pharo64-8.0
name: ${{ matrix.smalltalk }}
Expand Down
5 changes: 4 additions & 1 deletion source/BaselineOfLaunchpad/BaselineOfLaunchpad.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ BaselineOfLaunchpad >> baseline: spec [
spec for: #'pharo10.x' do: [ self setUpPharo10Packages: spec ].
spec for: #'pharo11.x' do: [
self setUpPharo11Packages: spec.
spec preLoadDoIt: #closeWelcomeWindow ]
spec preLoadDoIt: #closeWelcomeWindow ].
spec for: #'pharo12.x' do: [
self setUpPharo11Packages: spec.
spec preLoadDoIt: #closeWelcomeWindow ].
]

{ #category : 'post-load actions' }
Expand Down

0 comments on commit dbcbd30

Please sign in to comment.