diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c448748..57d78b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: jobs: release: name: Release - runs-on: ubuntu-latest + runs-on: macos-latest steps: - name: Checkout repository diff --git a/gradle.properties b/gradle.properties index b62da02..0702c84 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ SONATYPE_HOST=DEFAULT RELEASE_SIGNING_ENABLED=true GROUP=dev.shreyaspatil.mutekt -VERSION_NAME=1.0.0 +VERSION_NAME=1.0.1 POM_INCEPTION_YEAR=2022 POM_URL=https://github.com/PatilShreyas/mutekt/ @@ -21,4 +21,4 @@ POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/PatilShreyas/mutekt.git POM_DEVELOPER_ID=PatilShreyas POM_DEVELOPER_NAME=Shreyas Patil -POM_DEVELOPER_URL=https://github.com/PatilShreyas/ \ No newline at end of file +POM_DEVELOPER_URL=https://github.com/PatilShreyas/ diff --git a/mutekt-core/build.gradle.kts b/mutekt-core/build.gradle.kts index 4886199..c961ba4 100644 --- a/mutekt-core/build.gradle.kts +++ b/mutekt-core/build.gradle.kts @@ -12,18 +12,13 @@ kotlin { withJava() } js(IR) { - browser { - testTask { - isEnabled = false - } - } - nodejs { - testTask { - isEnabled = false - } - } + browser() + nodejs() } ios() + iosX64() + iosArm64() + iosSimulatorArm64() mingwX64() @Suppress("UNUSED_VARIABLE") diff --git a/mutekt-core/src/commonTest/kotlin/dev/shreyaspatil/mutekt/core/AtomicExecutorTest.kt b/mutekt-core/src/jvmTest/kotlin/dev/shreyaspatil/mutekt/core/AtomicExecutorTest.kt similarity index 100% rename from mutekt-core/src/commonTest/kotlin/dev/shreyaspatil/mutekt/core/AtomicExecutorTest.kt rename to mutekt-core/src/jvmTest/kotlin/dev/shreyaspatil/mutekt/core/AtomicExecutorTest.kt