Skip to content
Closed
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
5 changes: 3 additions & 2 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ SmalltalkCISpec {
],
#testing : {
#coverage : {
#packages : [ 'Containers-Trie' ]
#packages : [ 'Containers-Trie' ],
#format : 'lcov'
}
}
}
}
24 changes: 22 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
language: smalltalk
sudo: false

# Select operating system(s)
os:
- linux
- osx

# Select compatible Smalltalk image(s)
smalltalk:
- Pharo-6.1
- Pharo-7.0
- Pharo64-8.0
- Pharo64-7.0

cache:
directories:
- $HOME/.smalltalkCI

env:
- COVERAGE=true

install:
- curl -L https://get.smalltalkci.st | bash

script:
- smalltalkci -s "${SMALLTALK}" --coverage

after_success:
- if [ "$COVERAGE" = "true" ]; then
gem install coveralls-lcov;
coveralls-lcov coverage/lcov.info;
fi

notifications:
email: false