Skip to content

Commit

Permalink
Do not run tests for WebAssembly + enable D8 (#3561)
Browse files Browse the repository at this point in the history
  • Loading branch information
serras authored Jan 21, 2025
1 parent 0245973 commit 095c598
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 57 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ jobs:

wasm:
runs-on: ubuntu-latest
timeout-minutes: 60
timeout-minutes: 90

steps:
- uses: actions/checkout@v4
Expand All @@ -318,7 +318,7 @@ jobs:
cache-read-only: ${{ github.ref != 'refs/heads/main' }}

- name: Compile WebAssembly
run: ./gradlew wasmJsApiBuild wasmJsJar wasmJsTest -Penable_wasm=true --scan
run: ./gradlew wasmJsApiBuild wasmJsJar -Penable_wasm=true --scan

- name: Upload reports
if: failure()
Expand Down
18 changes: 0 additions & 18 deletions arrow-libs/core/arrow-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,6 @@ kotlin {
}
}

js {
nodejs {
testTask {
useMocha {
timeout = "300s"
}
}
}
browser {
testTask {
useKarma {
useChromeHeadless()
timeout.set(Duration.ofMinutes(5))
}
}
}
}

@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
(project.rootProject.properties["kotlin_language_version"] as? String)?.also { languageVersion = KotlinVersion.fromVersion(it) }
Expand Down
18 changes: 0 additions & 18 deletions arrow-libs/fx/arrow-collectors/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,6 @@ kotlin {
}
}

js {
nodejs {
testTask {
useMocha {
timeout = "60s"
}
}
}
browser {
testTask {
useKarma {
useChromeHeadless()
timeout.set(Duration.ofMinutes(1))
}
}
}
}

@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
(project.rootProject.properties["kotlin_language_version"] as? String)?.also { languageVersion = KotlinVersion.fromVersion(it) }
Expand Down
18 changes: 0 additions & 18 deletions arrow-libs/fx/arrow-fx-coroutines/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,6 @@ kotlin {
}
}

js {
nodejs {
testTask {
useMocha {
timeout = "60s"
}
}
}
browser {
testTask {
useKarma {
useChromeHeadless()
timeout.set(Duration.ofMinutes(1))
}
}
}
}

@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
(project.rootProject.properties["kotlin_language_version"] as? String)?.also { languageVersion = KotlinVersion.fromVersion(it) }
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
animalSniffer = "1.7.2"
arrowGradleConfig = "0.12.0-rc.25"
arrowGradleConfig = "0.12.0-rc.26"
coroutines = "1.10.1"
classgraph = "4.8.179"
dokka = "2.0.0"
Expand Down

0 comments on commit 095c598

Please sign in to comment.