Skip to content

Nightly Tests

Cuong Do edited this page Jan 9, 2018 · 12 revisions

Overview

Every night, a set of tests run as part of the TeamCity project Nightlies. These tests have a few common characteristics:

  • They set up a temporary CockroachDB cluster and run load against it.
  • Their runtime is too long for them to be included in CI.

All nightly tests, except for Jepsen, use Terraform to create and destroy their temporary cluster. It may be wise to remove Terraform in the future, given the cognitive overhead of using a tool that provides much more functionality than we need.

Test Entry Points

TeamCity jobs execute various bash scripts that, in turn, run the relevant tests. These files are named teamcity/build-*.sh. Key files include:

(to finish)

Key Source Files