Update graphql-kotlin project for regression benchmarks

This commit is contained in:
Yahor Berdnikau
2022-04-19 17:24:17 +02:00
parent 34c855b450
commit 9c00787641
4 changed files with 13 additions and 79 deletions
@@ -9,15 +9,11 @@
@file:BenchmarkProject(
name = "graphql-kotlin",
gitUrl = "https://github.com/ExpediaGroup/graphql-kotlin.git",
gitCommitSha = "fac1e41914f6a8a0a494082752a4e3674b812a3f"
gitCommitSha = "a0a8bad009a4ddbf88ce5c30200f90a091bd3df7"
)
import java.io.File
val stableReleasePatch = {
"graphql-kotlin-1.6.10.patch" to File("benchmarkScripts/files/graphql-kotlin-1.6.10.patch").inputStream()
}
val currentReleasePatch = {
"graphql-kotlin-current.patch" to File("benchmarkScripts/files/graphql-kotlin-current.patch")
.readText()
@@ -68,7 +64,7 @@ runAllBenchmarks(
}
},
mapOf(
"1.6.10" to stableReleasePatch,
"1.6.20" to currentReleasePatch
"1.6.20" to null,
"1.7.0" to currentReleasePatch
)
)