Skip to content

Commit

Permalink
Merge pull request #61 from anton6tak/#58-update-to-kotlin-1.5.20-and…
Browse files Browse the repository at this point in the history
…-gradle-0.7.2

Fixed ci check and removed non uses
  • Loading branch information
Alex009 authored Jul 7, 2021
2 parents 279b129 + 691ffe7 commit 03a7b4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compilation-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
- name: Install pods with kotlin
run: cd sample/ios-app && pod install
- name: build ios sample
run: cd sample/ios-app && xcodebuild -scheme TestProj -workspace TestProj.xcworkspace -configuration Debug -sdk iphonesimulator -arch x86_64 build CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty
run: cd sample/ios-app && set -o pipefail && xcodebuild -scheme TestProj -workspace TestProj.xcworkspace -configuration Debug -sdk iphonesimulator -arch x86_64 build CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,5 @@ kotlin {
android {
publishLibraryVariants("release", "debug")
}
sourceSets {
val mobileDeviceTest by creating

val commonTest by getting
val iosTest by getting
val androidAndroidTest by getting


mobileDeviceTest.dependsOn(commonTest)
iosTest.dependsOn(mobileDeviceTest)
androidAndroidTest.dependsOn(mobileDeviceTest)

}
}

0 comments on commit 03a7b4d

Please sign in to comment.