File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed
main/kotlin/kotlinx/benchmark/integration
test/resources/templates/kotlin-multiplatform Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ val createClasspathManifest by tasks.registering {
54
54
dependsOn(artifactsTask(" jvm" ))
55
55
dependsOn(artifactsTask(" js" ))
56
56
dependsOn(artifactsTask(" metadata" ))
57
- dependsOn(artifactsTask(" ${nativeTargetName} Metadata" ))
58
57
dependsOn(artifactsTaskNativeKlibs())
59
58
60
59
val outputDir = file(" $buildDir /$name " )
@@ -66,7 +65,6 @@ val createClasspathManifest by tasks.registering {
66
65
resolve(" runtime-metadata.txt" ).writeText(artifactsTask(" metadata" ).archiveFilePath)
67
66
resolve(" runtime-jvm.txt" ).writeText(artifactsTask(" jvm" ).archiveFilePath)
68
67
resolve(" runtime-js.txt" ).writeText(artifactsTask(" js" ).archiveFilePath)
69
- resolve(" runtime-native-metadata.txt" ).writeText(artifactsTask(" ${nativeTargetName} Metadata" ).archiveFilePath)
70
68
resolve(" runtime-native.txt" ).writeText(artifactsTaskNativeKlibs().klibs())
71
69
}
72
70
}
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ private val buildScript = run {
43
43
def benchmarkRuntimeJvm = files(${readFileList(" runtime-jvm.txt" )} )
44
44
def benchmarkRuntimeJs = files(${readFileList(" runtime-js.txt" )} )
45
45
def benchmarkRuntimeNative = files(${readFileList(" runtime-native.txt" )} )
46
- def benchmarkRuntimeNativeMetadata = files(${readFileList(" runtime-native-metadata.txt" )} )
47
46
""" .trimIndent()
48
47
}
49
48
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ kotlin {
33
33
dependsOn commonMain
34
34
dependencies {
35
35
implementation(benchmarkRuntimeNative)
36
- implementation(benchmarkRuntimeNativeMetadata)
37
36
}
38
37
}
39
38
}
You can’t perform that action at this time.
0 commit comments