Skip to content

Commit 427cd47

Browse files
authored
Merge pull request #21 from msgpack/CI-support
Ci support
2 parents b957d47 + 6bc3253 commit 427cd47

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/workflows/main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: smalltalkCI
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-22.04
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
smalltalk: [Pharo64-11, Squeak64-6.0]
12+
experimental: [false]
13+
continue-on-error: ${{ matrix.experimental }}
14+
name: ${{ matrix.smalltalk }}
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: hpi-swa/setup-smalltalkCI@v1
18+
with:
19+
smalltalk-image: ${{ matrix.smalltalk }}
20+
- name: Run tests
21+
run: smalltalkci -s ${{ matrix.smalltalk }}
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
shell: bash
25+
timeout-minutes: 20

.smalltalk.ston

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
SmalltalkCISpec {
2+
#loading : [
3+
SCIMetacelloLoadSpec {
4+
#baseline : 'MessagePack',
5+
#directory : 'repository',
6+
#load : [ 'default' ],
7+
#onConflict : #useLoaded,
8+
#useLatestMetacello : false,
9+
#onWarningLog : true,
10+
#platforms : [ #pharo, #squeak ]
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)