Gradle test sharding
REQUIREMENTS
- The Tuist Gradle plugin installed and configured
The Tuist Gradle plugin includes built-in support for test sharding. It discovers test suites by scanning compiled test class files and uses the Tuist server to create balanced shard plans based on historical timing data.
How it works
Test sharding follows a two-phase workflow:
- Build phase: Tuist enumerates your tests and creates a shard plan on the server. The server uses historical test timing data from the last 30 days to distribute tests across shards so each shard takes roughly the same amount of time. The build phase outputs a shard matrix that your CI system uses to spawn parallel runners.
- Test phase: Each CI runner receives a shard index and executes only the tests assigned to that shard.
Build phase
Prepare test shards using the tuistPrepareTestShards task:
./gradlew tuistPrepareTestShards \
-PtuistShardMax=5This task:
- Compiles the test classes
- Discovers test suites by scanning the compiled class files
- Creates a shard plan on the Tuist server using historical timing data
- Outputs a shard matrix for your CI system
Build options
Configure sharding via Gradle project properties:
| Property | Description |
|---|---|
-PtuistShardMax=<N> | Maximum number of shards (default: 2) |
-PtuistShardMin=<N> | Minimum number of shards |
-PtuistShardMaxDuration=<MS> | Target maximum duration per shard in milliseconds |
The shard reference is automatically derived from CI environment variables (GITHUB_RUN_ID, CI_PIPELINE_ID, etc.) or can be set explicitly via the TUIST_SHARD_REFERENCE environment variable.
Test phase
Each shard runner executes its assigned tests using the standard test task. When TUIST_SHARD_INDEX is set, the plugin automatically fetches the shard assignment from the server and filters the test execution to include only the assigned test suites.
TUIST_SHARD_INDEX=0 ./gradlew testContinuous integration
Test sharding currently supports the following CI providers:
- GitHub Actions
GitHub Actions
Use a matrix strategy to run shards in parallel:
name: Tests
on: [pull_request]
jobs:
build:
name: Build test shards
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.build.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- uses: gradle/actions/setup-gradle@v4
- run: tuist auth login
- id: build
run: ./gradlew tuistPrepareTestShards -PtuistShardMax=5
test:
name: "Shard #${{ matrix.shard }}"
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shard: ${{ fromJson(needs.build.outputs.matrix).shard }}
env:
TUIST_SHARD_INDEX: ${{ matrix.shard }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- uses: gradle/actions/setup-gradle@v4
- run: tuist auth login
- run: ./gradlew test