Skip to content

Commit

Permalink
remove unneeded targets that make build waay slower so we fit in jitp…
Browse files Browse the repository at this point in the history
…acks 20 minutes
  • Loading branch information
champo committed Sep 6, 2024
1 parent 866bcb9 commit af63fd9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 50 deletions.
29 changes: 0 additions & 29 deletions extensions/coroutines-extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@ kotlin {
implementation project(':drivers:sqlite-driver')
}
}
jsTest {
dependencies {
implementation deps.kotlin.test.js
implementation project(':drivers:sqljs-driver')
}
}
nativeMain {
dependsOn(commonMain)

Expand All @@ -55,29 +49,6 @@ kotlin {
}
}

js {
nodejs {
testTask {
useMocha {
timeout = "5s"
}
}
}
browser {
testTask {
useMocha {
timeout = "5s"
}
}
}
compilations.all {
kotlinOptions {
moduleKind = "umd"
sourceMap = true
sourceMapEmbedSources = null
}
}
}

jvm()

Expand Down
17 changes: 0 additions & 17 deletions runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@ apply plugin: 'org.jetbrains.kotlin.multiplatform'
kotlin {
jvm()

js {
nodejs {}
browser {}
compilations.all {
kotlinOptions {
moduleKind = "umd"
sourceMap = true
sourceMapEmbedSources = null
}
}
}

iosX64()
iosArm32()
iosArm64()
Expand Down Expand Up @@ -46,11 +34,6 @@ kotlin {
implementation deps.stately.collections
}
}
jsTest {
dependencies {
implementation deps.kotlin.test.js
}
}
nativeMain {
dependsOn(commonMain)
dependencies {
Expand Down
6 changes: 2 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
rootProject.name = 'sqldelight'

include ':drivers:android-driver'
include ':drivers:jdbc-driver'
include ':drivers:native-driver'
include ':drivers:jdbc-driver'
include ':drivers:sqlite-driver'
include ':drivers:sqljs-driver'
include ':drivers:driver-test'
include ':extensions:android-paging'
include ':extensions:android-paging3'
Expand All @@ -15,6 +14,5 @@ include ':runtime'
include ':sqldelight-compiler'
include ':sqldelight-compiler:integration-tests'
include ':sqldelight-gradle-plugin'
include ':sqldelight-idea-plugin'
include ':sqlite-migrations'
include ':test-util'
include ':test-util'

0 comments on commit af63fd9

Please sign in to comment.