Skip to content

Commit

Permalink
ignore deprecation warning on trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohn123 authored Jun 14, 2022
1 parent f645b3e commit b98a841
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/ci-trunk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches:
- dev
- master
pull_request:
branches:
- master
- dev

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# Select platform(s)
os: [ ubuntu-latest, macos-latest, windows-latest ]
# Select compatible Smalltalk image(s)
smalltalk: [ Squeak64-trunk]
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-version: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }} .smalltalk.trunk.ston
shell: bash
timeout-minutes: 15
env:
# for uploading coverage reports
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# Select platform(s)
os: [ ubuntu-latest, macos-latest, windows-latest ]
# Select compatible Smalltalk image(s)
smalltalk: [ Squeak64-trunk, Squeak64-5.3 ]
smalltalk: [ Squeak64-5.3 ]
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
19 changes: 19 additions & 0 deletions .smalltalk.trunk.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'SVGMorph',
#directory : 'packages',
#platforms : [ #squeak ],
#load : [ 'tests' ],
#useLatestMetacello : true
}
],
#preLoading : [
'scripts/preLoading.st'
],
#testing : {
#coverage : {
#packages : [ 'SVG-Morphic', 'SVG-Editor']
}
}
}

0 comments on commit b98a841

Please sign in to comment.