Skip to content

Commit b378acf

Browse files
authored
telemetry(jetbrains): fix CI validation issue (#809)
1 parent dae168f commit b378acf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

buildspec/kotlinTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ phases:
1010
- |
1111
# TODO - iterate through the subdirectories to have one build script per runtime
1212
cd telemetry/jetbrains
13-
./gradlew test
13+
./gradlew build

telemetry/jetbrains/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ tasks {
4949

5050
val validatePackagedSchema by registering {
5151
group = "build"
52-
description = "Validates that the packaged definition is compatable with the packaged schema"
52+
description = "Validates that the packaged definition is compatible with the packaged schema"
5353
doFirst {
5454
try {
5555
val telemetrySchema = file("src/main/resources/telemetrySchema.json")
@@ -77,6 +77,10 @@ tasks {
7777
into("src/test/resources/")
7878
}
7979

80+
named("sourcesJar").configure {
81+
dependsOn(copyTelemetryResources)
82+
}
83+
8084
compileKotlin {
8185
dependsOn(copyTelemetryResources, validatePackagedSchema)
8286
}

0 commit comments

Comments
 (0)