scala - Travis-CI - add another task to the sbt command -
i read this:
by default, travis ci use
sbt ++$travis_scala_version test
to run test suite. can overridden described in general build configuration guide.
but link gives kilobytes , kilobytes of text don't grok.
in 2 sentences; how make travis ci use following instead:
sbt ++$travis_scala_version test assembly
?
one has add script
section .travis.yml
, e.g.
language: scala scala: - 2.11.5 - 2.10.0 script: - sbt ++$travis_scala_version test assembly
Comments
Post a Comment