diff --git a/.github/workflows/PR.yml b/.github/workflows/PR.yml index 99b1b2b6797..ac96781591f 100644 --- a/.github/workflows/PR.yml +++ b/.github/workflows/PR.yml @@ -75,10 +75,6 @@ jobs: if: matrix.os == 'macOS-latest' && matrix.job == 'test' run: ./gradlew iosX64Test --stacktrace - - name: Run ios tests with strict memory model - if: matrix.os == 'macOS-latest' && matrix.job == 'test' - run: ./gradlew iosX64Test -Pkotlin.native.binary.memoryModel=strict --stacktrace - # Build the sample - name: Build the sample if: matrix.os == 'macOS-latest' && matrix.job == 'gradle-plugin-tests' diff --git a/extensions/async-extensions/build.gradle b/extensions/async-extensions/build.gradle index 6a04153e656..dd2b7c8b0a1 100644 --- a/extensions/async-extensions/build.gradle +++ b/extensions/async-extensions/build.gradle @@ -23,13 +23,6 @@ kotlin { implementation project(':drivers:sqlite-driver') } } - nativeMain { - dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${deps.versions.kotlinCoroutines.get()}-native-mt") { - force = true - } - } - } } sourceSets.matching { it.name.endsWith("Test") }.all { diff --git a/extensions/coroutines-extensions/build.gradle b/extensions/coroutines-extensions/build.gradle index 43d3a109b6f..fad319c730b 100644 --- a/extensions/coroutines-extensions/build.gradle +++ b/extensions/coroutines-extensions/build.gradle @@ -38,19 +38,9 @@ kotlin { implementation project(':drivers:sqljs-driver') } } - nativeMain { - dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${deps.versions.kotlinCoroutines.get()}-native-mt") { - force = true - } - } - } nativeTest { dependencies { implementation project(':drivers:native-driver') - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${deps.versions.kotlinCoroutines.get()}-native-mt") { - force = true - } } } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1048d032ffe..9a80e826328 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,7 +1,7 @@ [versions] kotlin = "1.7.0" dokka = "1.6.10" -kotlinCoroutines = "1.6.1" +kotlinCoroutines = "1.6.3" idea = "211.7628.21" # Android Studio Bumblebee (see https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html) androidxSqlite = "2.2.0" schemaCrawler = "16.16.18"