From 5673df5f17b2eb08c0effbb0b34e0147300e1f72 Mon Sep 17 00:00:00 2001 From: hfhbd <22521688+hfhbd@users.noreply.github.com> Date: Sun, 8 Dec 2024 15:47:48 +0100 Subject: [PATCH] Use linux as publishing host --- .github/dependabot.yml | 1 - .github/workflows/CD.yml | 2 +- .github/workflows/dependencies.yml | 2 +- gradle.properties | 1 + gradle/libs.versions.toml | 1 - 5 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 37d5d6e..6a61efe 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,5 @@ updates: interval: "daily" assignees: - "hfhbd" - rebase-strategy: "disabled" registries: - google diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index c6e56fc..c82a03b 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -10,7 +10,7 @@ concurrency: jobs: build: - runs-on: macos-latest + runs-on: ubuntu-latest environment: name: CD diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index e8830af..f0165fa 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -9,7 +9,7 @@ on: jobs: dependency-submission: - runs-on: macos-latest + runs-on: ubuntu-latest permissions: contents: write diff --git a/gradle.properties b/gradle.properties index 3330590..0ecf44a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,3 +16,4 @@ org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true group=app.softwork android.useAndroidX=true kotlin.mpp.androidSourceSetLayoutVersion=2 +kotlin.native.enableKlibsCrossCompilation=true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0698384..cb9466a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -16,7 +16,6 @@ androidx-test-runner = { module = "androidx.test:runner", version = "1.6.2" } [plugins] kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } -kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" } android = { id = "com.android.application", version = "8.7.3" } binary = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.16.3" }