Skip to content
Merged
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
15 changes: 9 additions & 6 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,25 @@ on:
branches:
- 'main'
pull_request:
types: [assigned, opened, synchronize, reopened]
types: [opened, synchronize, reopened]

jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
smalltalk: [ Pharo64-11, Pharo64-12 ]
smalltalk: [ Pharo64-11, Pharo64-12, Pharo64-13 ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup smalltalkCI
uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Load in New Image and Run Tests
- name: Load in new image and run tests
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }}
shell: bash
timeout-minutes: 15
timeout-minutes: 30
3 changes: 2 additions & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
'srcDirectory' : ''
'srcDirectory' : 'src',
'tags' : [ #Laborde]
}
8 changes: 5 additions & 3 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'Collectable',
#directory : 'src',
#onConflict : #useLoaded,
#onUpgrade : #useLoaded,
#onWarningLog : true,
#platforms : [ #pharo ]
}
],
#testing : {
#include : {
#packages : [ 'Collectable*-Tests' ]
}
#packages : [ 'Collectable*-Tests' ]
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Pierre Laborde
Copyright (c) 2023-2025 Pierre Laborde

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,17 @@
```smalltalk
Metacello new
repository: 'github://labordep/Collectable:main';
baseline: 'Collectable' ;
baseline: 'Collectable';
onConflictUseLoaded;
load.
```

## Dependencies

- [Toplo](https://github.com/plantec/Toplo)
- [Bloc](https://github.com/pharo-graphics/Bloc)
- [Pyramid](https://github.com/OpenSmock/Pyramid)
- [Molecule](https://github.com/OpenSmock/Molecule)
- [Pyramid](https://github.com/OpenSmock/Pyramid)
- [PharoGameye](https://github.com/labordep/PharoGameye)
- [OS-Windows](https://github.com/astares/Pharo-OS-Windows/src)
- [OS-Windows](https://github.com/OpenSmock/OS-Windows)

## License

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,17 @@ BaselineOfCollectable >> baseline: spec [
{ #category : #baselines }
BaselineOfCollectable >> dependencies: spec [

"Roassal stable version"
spec baseline: 'Roassal' with: [ spec repository: 'github://pharo-graphics/Roassal' ].

"Functionnality to import Pharo Gameye datas"
spec baseline: 'Gameye' with: [ spec repository: 'github://labordep/PharoGameye:2.0.1' ].
spec baseline: 'Gameye' with: [ spec repository: 'github://labordep/PharoGameye:2.0.3' ].

"OS-Windows management layer for the UI"
Smalltalk os isWindows ifTrue: [
spec baseline: 'OSWindows' with: [ spec repository: 'github://astares/Pharo-OS-Windows/src' ].

"OpenSmock OS-Windows extensions"
spec baseline: 'OSWindowsOpenSmock' with: [ spec repository: 'github://OpenSmock/OS-Windows:main' ].
].

"UI tool : Pyramid - Pyramid already load Toplo (and Bloc of course)"
spec baseline: 'Pyramid' with: [ spec repository: 'github://OpenSmock/Pyramid:main/src' ].
"UI editor: Pyramid"
spec baseline: 'Pyramid' with: [ spec repository: 'github://OpenSmock/Pyramid:main' ].

"Architecture framework : Molecule"
spec baseline: 'Molecule' with: [ spec repository: 'github://OpenSmock/Molecule:1.2.12' ].
"Component architecture framework: Molecule"
spec baseline: 'Molecule' with: [ spec repository: 'github://OpenSmock/Molecule:1.3.4' ].
]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.