X Tutup
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
16 changes: 11 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ name: smalltalkCI
on: [push, pull_request]

jobs:
build:
test:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
smalltalk: [ Pharo64-10, Pharo64-9.0, Pharo64-8.0, Pharo64-7.0, GemStone64-3.6.3, GemStone64-3.5.7, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3, Squeak64-5.2, Squeak64-5.1 ]
smalltalk: [ Pharo64-10, Pharo64-9.0, Pharo64-8.0, Pharo64-7.0, GemStone64-3.6.3, GemStone64-3.5.7, GemStone64-3.4.5, GemStone64-3.3.9, GemStone64-3.2.17, GemStone64-3.1.0.6, Squeak64-5.3 ]
experimental: [ false ]
include:
- smalltalk: Pharo64-11
experimental: true
- smalltalk: Squeak64-trunk
- smalltalk: Squeak64-6.0
experimental: true
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.smalltalk }}
Expand All @@ -22,8 +22,14 @@ jobs:
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
smalltalkCI-source: 'jbrichau/smalltalkCI'
- name: Run tests
id: test_run
run: smalltalkci -s ${{ matrix.smalltalk }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
timeout-minutes: 20
timeout-minutes: 20
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
name: ${{ matrix.smalltalk }}
12 changes: 11 additions & 1 deletion .smalltalk.ston
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,15 @@ SmalltalkCISpec {
#load : [ 'Tests' ],
#platforms : [ #gemstone ]
}
]
],
#testing : {
#defaultTimeout : 30,
#include : {
#classes : [ #SentButNotImplementedTest , #UndefinedSymbolsTest ]
},
#coverage : {
#packages: [ 'Grease*' ],
#format: #lcov
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Grease is widely adopted. Implementations exist already for all platforms that s

## Platform compatibility

The latest Grease version is supported on the Pharo and GemStone/S platforms and versions tested in the SmalltalkCI workflow in Github Actions: [![smalltalkCI](https://github.com/SeasideSt/Grease/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/SeasideSt/Grease/actions/workflows/ci.yml)
The latest Grease version is supported on the Pharo and GemStone/S platforms and versions tested in the SmalltalkCI workflow in Github Actions: [![smalltalkCI](https://github.com/SeasideSt/Grease/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/SeasideSt/Grease/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/SeasideSt/Grease/branch/master/graph/badge.svg?token=75NIYAHAGI)](https://codecov.io/gh/SeasideSt/Grease)

## Installation

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exceptions
stackDepth

<ignoreForCoverage>
| depth current |
depth := 0.
current := thisContext.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
processes
thisContext

<ignoreForCoverage>
^ thisContext sender
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exceptions
stackDepth

<ignoreForCoverage>
| depth current |
depth := 0.
current := thisContext.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
processes
thisContext

<ignoreForCoverage>
^ thisContext sender
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exceptions
stackDepth

<ignoreForCoverage>
| depth current |
depth := 0.
current := thisContext.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
processes
thisContext

<ignoreForCoverage>
^ thisContext sender
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exceptions
stackDepth

<ignoreForCoverage>
| depth current |
depth := 0.
current := thisContext.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
processes
thisContext

<ignoreForCoverage>
^ thisContext sender
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exceptions
stackDepth

<ignoreForCoverage>
| depth current |
depth := 0.
current := thisContext.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
processes
thisContext

<ignoreForCoverage>
^ thisContext sender
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exceptions
stackDepth

<ignoreForCoverage>
| depth current |
depth := 0.
current := thisContext.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
processes
thisContext

<ignoreForCoverage>
^ thisContext sender
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
accessing
platform
<ignoreForCoverage>
^ GRPlatform current
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
private
returnSender
<ignoreForCoverage>
^ GRPlatform current thisContext sender

This file was deleted.

X Tutup