Test sync source
Android Tests / android-test (push) Failing after 52s
Kotlin Multiplatform CI / android-test (push) Canceled after 0s
Kotlin Multiplatform CI / android-build (push) Canceled after 0s
Kotlin Multiplatform CI / web-test (push) Canceled after 0s
Kotlin Multiplatform CI / shared-test (push) Canceled after 2m5s
Debug Gradle Tasks / tasks (push) Successful in 1m46s
SDK Validation / sdk (push) Failing after 53s
Android Tests / android-test (push) Failing after 52s
Kotlin Multiplatform CI / android-test (push) Canceled after 0s
Kotlin Multiplatform CI / android-build (push) Canceled after 0s
Kotlin Multiplatform CI / web-test (push) Canceled after 0s
Kotlin Multiplatform CI / shared-test (push) Canceled after 2m5s
Debug Gradle Tasks / tasks (push) Successful in 1m46s
SDK Validation / sdk (push) Failing after 53s
This commit is contained in:
@@ -6,6 +6,8 @@ kotlin.daemon.jvmargs=-Xmx3072M
|
||||
org.gradle.jvmargs=-Xmx4096M -Dfile.encoding=UTF-8
|
||||
org.gradle.configuration-cache=true
|
||||
org.gradle.caching=true
|
||||
kotlin.native.ignoreDisabledTargets=true
|
||||
org.gradle.parallel=true
|
||||
|
||||
#Android
|
||||
android.nonTransitiveRClass=true
|
||||
|
||||
@@ -14,6 +14,7 @@ junit = "4.13.2"
|
||||
kotlin = "2.4.10"
|
||||
kotlin-wrappers = "2026.7.7"
|
||||
material3 = "1.11.0-alpha07"
|
||||
ktlint = "12.1.1"
|
||||
|
||||
[libraries]
|
||||
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
|
||||
@@ -40,4 +41,5 @@ androidApplication = { id = "com.android.application", version.ref = "agp" }
|
||||
androidMultiplatformLibrary = { id = "com.android.kotlin.multiplatform.library", version.ref = "agp" }
|
||||
composeMultiplatform = { id = "org.jetbrains.compose", version.ref = "composeMultiplatform" }
|
||||
composeCompiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
||||
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
|
||||
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
|
||||
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
|
||||
@@ -6,6 +6,7 @@ plugins {
|
||||
alias(libs.plugins.androidMultiplatformLibrary)
|
||||
alias(libs.plugins.composeMultiplatform)
|
||||
alias(libs.plugins.composeCompiler)
|
||||
alias(libs.plugins.ktlint)
|
||||
}
|
||||
|
||||
kotlin {
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
name: Sync Source
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
sync:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Sync source
|
||||
run: |
|
||||
mkdir -p /data/source/my-project
|
||||
|
||||
rsync -a --delete \
|
||||
./ \
|
||||
/data/source/my-project/
|
||||
Reference in New Issue
Block a user