Play framework 2.0 continuous integration setup

前端 未结 4 2032
情深已故
情深已故 2021-01-30 22:43

I am looking for ideas for a Play 2.0 continuous integration setup. It would contain typical jobs like build after a git push, nightly builds with deployment to a test Heroku in

4条回答
  •  隐瞒了意图╮
    2021-01-30 23:20

    Play 2.0's build tool is just a thin wrapper around SBT. You should be able to use Hudson's sbt plugin to execute SBT build commands that are the equivalent of the Play commands you would execute from the console.

    We execute the following under Bamboo for our builds:

    SBT_OPTS="-Dsbt.log.noformat=true"
    sbt clean compile test
    

    (The SBT_OPTS variable turns off the colour formatting, making test output legible in log files.)

提交回复
热议问题