olegych / sbt-cached-ci   1.0.5

GitHub

Incremental sbt builds for CI environments.

Scala versions: 2.12
sbt plugins: 1.0

Github Build Status Travis Build Status CircleCI Build Status sbt-cached-ci Latest Version

sbt-cached-ci

Incremental sbt builds for CI environments.

The plugin introduces a new task cachedCiTest which calls testQuick and calls clean once a day.

Usage

Supported sbt version - 1.x.

  1. In ./project/plugins.sbt add:
    addSbtPlugin("io.github.olegych" %% "sbt-cached-ci" % latest_version)
    
  2. Configure your CI to cache current directory (preserving full timestamp) and call cachedCiTest task, see samples at .travis.yml, .github/workflows/test.yml or .circleci/config.yml

Period between full test runs can be configured with cachedCiTestFullPeriod setting.

cachedCiTestQuick configures what is executed on every build.

cachedCiTestFull configures what is executed every cachedCiTestFullPeriod.