Skip to content

Commit

Permalink
Merge pull request #21 from msgpack/CI-support
Browse files Browse the repository at this point in the history
Ci support
  • Loading branch information
mumez authored Feb 3, 2024
2 parents b957d47 + 6bc3253 commit 427cd47
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: smalltalkCI

on: [push]

jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
smalltalk: [Pharo64-11, Squeak64-6.0]
experimental: [false]
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Run tests
run: smalltalkci -s ${{ matrix.smalltalk }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
timeout-minutes: 20
13 changes: 13 additions & 0 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'MessagePack',
#directory : 'repository',
#load : [ 'default' ],
#onConflict : #useLoaded,
#useLatestMetacello : false,
#onWarningLog : true,
#platforms : [ #pharo, #squeak ]
}
]
}

0 comments on commit 427cd47

Please sign in to comment.