File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
benchmarks/serde-benchmarks Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ dependencies {
88
88
89
89
val generateProtocolTestProjectionTasks = smithyBuild.projections.map { projection ->
90
90
tasks.register<Exec >(" testProtocol-${projection.name} " ) {
91
- dependsOn(tasks.generateSmithyProjections)
91
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
92
92
group = " Verification"
93
93
94
94
val wrapper = if (System .getProperty(" os.name" ).lowercase().contains(" windows" )) " gradlew.bat" else " gradlew"
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ val benchmarkModels = listOf(
100
100
101
101
val stageGeneratedSources = tasks.register(" stageGeneratedSources" ) {
102
102
group = " codegen"
103
- dependsOn(tasks.generateSmithyProjections)
103
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
104
104
doLast {
105
105
benchmarkModels.forEach {
106
106
copy {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ tasks.generateSmithyProjections {
24
24
}
25
25
26
26
tasks.kotlinSourcesJar {
27
- dependsOn(tasks.generateSmithyProjections)
27
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
28
28
}
29
29
30
30
val optinAnnotations = listOf (" kotlin.RequiresOptIn" , " aws.smithy.kotlin.runtime.InternalApi" )
@@ -44,7 +44,7 @@ kotlin.sourceSets.getByName("main") {
44
44
}
45
45
46
46
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
47
- dependsOn(tasks.generateSmithyProjections)
47
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
48
48
// FIXME - generated code has warnings unfortunately, see https://github.com/awslabs/aws-sdk-kotlin/issues/1169
49
49
compilerOptions.allWarningsAsErrors = false
50
50
}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ tasks.generateSmithyProjections {
24
24
}
25
25
26
26
tasks.kotlinSourcesJar {
27
- dependsOn(tasks.generateSmithyProjections)
27
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
28
28
}
29
29
30
30
val optinAnnotations = listOf (" kotlin.RequiresOptIn" , " aws.smithy.kotlin.runtime.InternalApi" )
@@ -37,7 +37,7 @@ kotlin.sourceSets.getByName("main") {
37
37
}
38
38
39
39
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
40
- dependsOn(tasks.generateSmithyProjections)
40
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
41
41
}
42
42
43
43
tasks.test {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ val generatedSrcDir = project.layout.projectDirectory.dir("generated-src/main/ko
60
60
61
61
val stageGeneratedSources = tasks.register(" stageGeneratedSources" ) {
62
62
group = " codegen"
63
- dependsOn(tasks.generateSmithyProjections)
63
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
64
64
outputs.dir(generatedSrcDir)
65
65
// FIXME - this task up-to-date checks are wrong, likely something is not setup right with inputs/outputs somewhere
66
66
// for now just always run it
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ tasks.generateSmithyProjections {
23
23
}
24
24
25
25
tasks.kotlinSourcesJar {
26
- dependsOn(tasks.generateSmithyProjections)
26
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
27
27
}
28
28
29
29
val optinAnnotations = listOf (" kotlin.RequiresOptIn" , " aws.smithy.kotlin.runtime.InternalApi" )
@@ -36,7 +36,7 @@ kotlin.sourceSets.getByName("main") {
36
36
}
37
37
38
38
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
39
- dependsOn(tasks.generateSmithyProjections)
39
+ dependsOn(tasks.generateSmithyProjections) // FIXME This is breaking Gradle configuration cache
40
40
compilerOptions {
41
41
// generated code has warnings unfortunately
42
42
allWarningsAsErrors = false
You can’t perform that action at this time.
0 commit comments