Skip to content

Commit 690a8e2

Browse files
authored
Merge pull request #56 from ba-st/update-buoy-to-v8
Update buoy to v8
2 parents 27b5c62 + 28df893 commit 690a8e2

File tree

6 files changed

+33
-23
lines changed

6 files changed

+33
-23
lines changed

.github/workflows/loading-groups.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
smalltalk: [ Pharo64-11, Pharo64-10, Pharo64-9.0, Pharo64-8.0 ]
11+
smalltalk: [ Pharo64-11, Pharo64-10 ]
1212
load-spec: [ deployment, deployment-seaside-extensions, tests, tools, development, development-seaside-extensions ]
1313
name: ${{ matrix.smalltalk }} + ${{ matrix.load-spec }}
1414
steps:

.github/workflows/markdown-lint.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
name: Markdown Lint
2-
on: [pull_request,workflow_dispatch]
2+
on:
3+
- push
4+
- pull_request
5+
- workflow_dispatch
36
jobs:
47
remark-lint:
58
name: runner / markdownlint
69
runs-on: ubuntu-latest
710
steps:
8-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
912
- name: markdownlint
1013
uses: reviewdog/action-markdownlint@v0
1114
with:

.github/workflows/unit-tests.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
name: Unit Tests
2-
3-
on: [push,pull_request,workflow_dispatch]
4-
1+
name: Pharo Unit Tests
2+
on:
3+
- push
4+
- pull_request
5+
- workflow_dispatch
56
jobs:
67
build:
78
runs-on: ubuntu-latest
89
strategy:
10+
fail-fast: false
911
matrix:
10-
smalltalk: [ Pharo64-11, Pharo64-10, Pharo64-9.0, Pharo64-8.0, Pharo64-7.0 ]
12+
smalltalk:
13+
- Pharo64-11
14+
- Pharo64-10
1115
name: ${{ matrix.smalltalk }}
1216
steps:
13-
- uses: actions/checkout@v3
14-
- uses: hpi-swa/setup-smalltalkCI@v1
17+
- uses: actions/checkout@v4
18+
- name: Set up Smalltalk CI
19+
uses: hpi-swa/setup-smalltalkCI@v1
1520
with:
1621
smalltalk-image: ${{ matrix.smalltalk }}
1722
- name: Load Image and Run Tests
@@ -20,7 +25,7 @@ jobs:
2025
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2126
timeout-minutes: 15
2227
- name: Upload coverage to Codecov
23-
uses: codecov/codecov-action@v3
28+
uses: codecov/codecov-action@v4
2429
with:
2530
name: Unit-Tests-${{matrix.smalltalk}}
2631
token: ${{ secrets.CODECOV_TOKEN }}

.project

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
'srcDirectory' : 'source'
2+
'srcDirectory' : 'source',
3+
'tags': [ 'Buenos Aires Smalltalk' ]
34
}

source/BaselineOfRenoirSt/BaselineOfRenoirSt.class.st

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
Metacello Baseline definition for RenoirSt
33
"
44
Class {
5-
#name : #BaselineOfRenoirSt,
6-
#superclass : #BaselineOf,
7-
#category : #BaselineOfRenoirSt
5+
#name : 'BaselineOfRenoirSt',
6+
#superclass : 'BaselineOf',
7+
#category : 'BaselineOfRenoirSt',
8+
#package : 'BaselineOfRenoirSt'
89
}
910

10-
{ #category : #baselines }
11+
{ #category : 'baselines' }
1112
BaselineOfRenoirSt >> baseline: spec [
1213

1314
<baseline>
@@ -25,24 +26,24 @@ BaselineOfRenoirSt >> baseline: spec [
2526
]
2627
]
2728

28-
{ #category : #private }
29+
{ #category : 'private' }
2930
BaselineOfRenoirSt >> customProjectAttributes [
3031

3132
Smalltalk globals at: #UnitValue ifPresent: [ :class | ^ #(#UnitsIsLoaded) ].
3233
^ super customProjectAttributes
3334
]
3435

35-
{ #category : #accessing }
36+
{ #category : 'accessing' }
3637
BaselineOfRenoirSt >> projectClass [
3738

3839
^ MetacelloCypressBaselineProject
3940
]
4041

41-
{ #category : #private }
42+
{ #category : 'private' }
4243
BaselineOfRenoirSt >> setUpDependencies: spec [
4344

4445
spec
45-
baseline: 'Buoy' with: [ spec repository: 'github://ba-st/Buoy:v6' ];
46+
baseline: 'Buoy' with: [ spec repository: 'github://ba-st/Buoy:v8' ];
4647
project: 'Buoy-Deployment' copyFrom: 'Buoy' with: [ spec loads: 'Deployment' ];
4748
project: 'Buoy-SUnit' copyFrom: 'Buoy' with: [ spec loads: 'Dependent-SUnit-Extensions' ];
4849
project: 'Buoy-Tools' copyFrom: 'Buoy' with: [ spec loads: 'Tools' ].
@@ -52,7 +53,7 @@ BaselineOfRenoirSt >> setUpDependencies: spec [
5253
project: 'Seaside3-Javascript' copyFrom: 'Seaside3' with: [ spec loads: 'Javascript' ]
5354
]
5455

55-
{ #category : #private }
56+
{ #category : 'private' }
5657
BaselineOfRenoirSt >> setUpPackages: spec [
5758

5859
spec
@@ -74,7 +75,7 @@ BaselineOfRenoirSt >> setUpPackages: spec [
7475
]
7576
]
7677

77-
{ #category : #private }
78+
{ #category : 'private' }
7879
BaselineOfRenoirSt >> setUpSeasideExtensionPackages: spec [
7980

8081
spec
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Package { #name : #BaselineOfRenoirSt }
1+
Package { #name : 'BaselineOfRenoirSt' }

0 commit comments

Comments
 (0)