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

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -