Skip to content

Commit 92748db

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#155 from SeasideSt/pharo11
Add pharo 11 to baseline (also cleanup code critics on baseline)
2 parents c5b7265 + 4c3a46b commit 92748db

File tree

3 files changed

+10
-34
lines changed

3 files changed

+10
-34
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -18,37 +18,12 @@ jobs:
1818
continue-on-error: ${{ matrix.experimental }}
1919
name: ${{ matrix.smalltalk }}
2020
steps:
21-
- name: Get current date
22-
id: date
23-
run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H:%M:%S')"
24-
- name: Log date
25-
run: echo "${{ steps.date.outputs.date }}"
26-
- name: Set default run status
27-
run: echo "::set-output name=last_run_status::default" > last_run_status
28-
- name: Restore last run status
29-
id: last_run
30-
uses: actions/cache@v2
31-
with:
32-
path: |
33-
last_run_status
34-
key: ${{ github.run_id }}-${{ matrix.smalltalk }}-${{ steps.date.outputs.date }}
35-
restore-keys: |
36-
${{ github.run_id }}-${{ matrix.smalltalk }}-
37-
- name: Set last run status
38-
id: last_run_status
39-
run: cat last_run_status
40-
- uses: actions/checkout@v2
41-
with:
42-
ref: ${{ github.event.workflow_dispatch.ref }}
21+
- uses: actions/checkout@v3
4322
- uses: hpi-swa/setup-smalltalkCI@v1
4423
with:
4524
smalltalk-image: ${{ matrix.smalltalk }}
4625
- name: Run tests
4726
id: test_run
48-
if: steps.last_run_status.outputs.last_run_status != 'success'
4927
run: smalltalkci -s ${{ matrix.smalltalk }}
5028
shell: bash
51-
timeout-minutes: 20
52-
- name: Save run status
53-
if: steps.last_run_status.outputs.last_run_status != 'success'
54-
run: echo "::set-output name=last_run_status::${{ steps.test_run.outcome }}" > last_run_status
29+
timeout-minutes: 20

repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
baselines
22
baselinePharo: spec
3-
3+
44
spec
55
for: #'pharo6.x'
66
do: [ spec
@@ -25,7 +25,7 @@ baselinePharo: spec
2525

2626
spec
2727
for: #(#'pharo6.x' #'pharo7.x' #'pharo8.x')
28-
do: [
28+
do: [
2929
spec
3030
package: 'Grease-Pharo40-Slime' with: [ spec requires: #('Grease-Core') ];
3131
package: 'Grease-Tests-Slime' with: [ spec requires: #('Grease-Pharo40-Slime') ].
@@ -35,7 +35,7 @@ baselinePharo: spec
3535

3636
spec
3737
for: #(#'pharo9.x')
38-
do: [
38+
do: [
3939
spec
4040
package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo90-Core') ];
4141
package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ];
@@ -50,10 +50,10 @@ baselinePharo: spec
5050
spec
5151
group: 'Slime' with: #('Grease-Pharo90-Slime');
5252
group: 'Slime Tests' with: #('Grease-Tests-Slime') ].
53-
53+
5454
spec
55-
for: #(#'pharo10.x')
56-
do: [
55+
for: #(#'pharo10.x' #'pharo11.x')
56+
do: [
5757
spec
5858
package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo100-Core') ];
5959
package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ];
@@ -67,4 +67,4 @@ baselinePharo: spec
6767

6868
spec
6969
group: 'Slime' with: #('Grease-Pharo90-Slime');
70-
group: 'Slime Tests' with: #('Grease-Tests-Slime') ].
70+
group: 'Slime Tests' with: #('Grease-Tests-Slime') ]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
SystemOrganization addCategory: #BaselineOfGrease!
2+
SystemOrganization addCategory: #'BaselineOfGrease-Manifest'!

0 commit comments

Comments
 (0)