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
3 changes: 0 additions & 3 deletions .filetree

This file was deleted.

20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: CI

on: [push, pull_request]
on: [ push, pull_request ]

jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
# Select platform(s)
os: [ ubuntu-latest, macos-latest, windows-latest ]
# Select compatible Smalltalk image(s)
smalltalk: [ Pharo64-8.0 ]
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
smalltalk: [ Pharo64-8.0, Pharo64-9.0, Pharo64-10, Pharo64-11, Pharo64-12, Pharo64-13 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-version: ${{ matrix.smalltalk }}
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
timeout-minutes: 15
shell: bash
timeout-minutes: 15
3 changes: 1 addition & 2 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'Diameter',
#directory : 'mc',
#platforms : [ #pharo ]
#directory : 'mc'
}
]
}
Expand Down
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,30 @@ RFC 6733 (diameter base) parser and toolkit
Parse Diameter AVP groups and messages and convert them to a
model. The model can be used to generate efficient C/C++ codec
code and a highly flexible Smalltalk toolkit.

## Installation

To install diameter on your Pharo image, execute the following script:

```Smalltalk
Metacello new
githubUser: 'moiji-mobile' project: 'diameter' commitish: 'master' path: 'mc';
baseline: 'Diameter';
load
```

To add diameter to your baseline:

```Smalltalk
spec
baseline: 'Diameter'
with: [ spec repository: 'github://moiji-mobile/diameter:master/mc' ]
```

Note you can replace the #master by another branch such as #development or a tag such as #v1.

## Smalltalk versions compatibility

| Version | Compatible Pharo versions |
|------------- |------------------------------|
| master | Pharo 80, 90, 10, 11, 12, 13 |
51 changes: 0 additions & 51 deletions ci_wercker.sh

This file was deleted.

10 changes: 0 additions & 10 deletions wercker.yml

This file was deleted.