1#!/bin/bash
2
3set -eu
4
5KSP_TASKS=":room:integration-tests:room-testapp-kotlin:kspWithKspGenJavaDebugAndroidTestKotlin"
6KAPT_TASKS=":room:integration-tests:room-testapp-kotlin:kaptGenerateStubsWithKaptDebugAndroidTestKotlin \
7:room:integration-tests:room-testapp-kotlin:kaptWithKaptDebugAndroidTestKotlin"
8
9kotlinc -script $(dirname $0)/tasks-comparison.kts -- \
10  -t "ksp" $KSP_TASKS \
11  -t "kapt" $KAPT_TASKS
12