Skip to content

Commit f680250

Browse files
committed
fix build
1 parent a7c6d1d commit f680250

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed

.github/workflows/graalvm-integration.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,7 @@ jobs:
4545
env:
4646
server: ${{ matrix.server }}
4747

48-
- name: Build native image
49-
run: ./gradlew :${server}:nativeCompile
50-
env:
51-
server: ${{ matrix.server }}
52-
53-
- name: Start native image
48+
- name: Build and start the native image
5449
id: start_server
5550
run: |
5651
set -x

integration/graalvm/ktor-graalvm-server/build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
//import com.expediagroup.graphql.plugin.gradle.graphql
1+
import com.expediagroup.graphql.plugin.gradle.graphql
22
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
33

44
@Suppress("DSL_SCOPE_VIOLATION") // TODO: remove once KTIJ-19369 / Gradle#22797 is fixed
55
plugins {
66
alias(libs.plugins.kotlin.jvm)
77
application
88
alias(libs.plugins.graalvm.native)
9-
// id("com.expediagroup.graphql")
9+
id("com.expediagroup.graphql")
1010
}
1111

1212
dependencies {
@@ -46,8 +46,8 @@ graalvmNative {
4646
}
4747
}
4848

49-
//graphql {
50-
// graalVm {
51-
// packages = listOf("com.expediagroup.graalvm.ktor")
52-
// }
53-
//}
49+
graphql {
50+
graalVm {
51+
packages = listOf("com.expediagroup.graalvm.ktor")
52+
}
53+
}

0 commit comments

Comments
 (0)