Skip to content

Commit

Permalink
Update android_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
stslex committed Mar 31, 2024
1 parent 0b55995 commit 57b2fb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 60
timeout-minutes: 15

steps:

Expand Down Expand Up @@ -50,4 +50,4 @@ jobs:
run: ./gradlew build

- name: Junit tests with Gradle
run: ./gradlew testDebugUnitTest
run: ./gradlew testDebugUnitTest
4 changes: 1 addition & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
plugins {
alias(libs.plugins.application) apply false
alias(libs.plugins.kotlin) apply false
alias(libs.plugins.library) apply false
alias(libs.plugins.serialization)
alias(libs.plugins.ksp) apply false
}
true // Needed to make the Suppress annotation work for the plugins block

buildscript {

Expand All @@ -18,5 +16,5 @@ buildscript {
}

tasks.register(name = "type", type = Delete::class) {
delete(rootProject.buildDir)
delete(rootProject.projectDir.resolve("build"))
}

0 comments on commit 57b2fb0

Please sign in to comment.