File tree Expand file tree Collapse file tree 2 files changed +32
-23
lines changed Expand file tree Collapse file tree 2 files changed +32
-23
lines changed Original file line number Diff line number Diff line change 22
22
java-version : 1.8
23
23
- name : Grant execute permission for gradlew
24
24
run : chmod +x gradlew
25
- - name : Build with Gradle
26
- run : ./gradlew allTests connectedAndroidTest --continue -x iosTest
25
+ - name : All tests excluding iosTes
26
+ run : ./gradlew allTests -x iosTest
27
+ - name : Run Android Instrumented Tests
28
+ uses : reactivecircus/android-emulator-runner@v2
29
+ with :
30
+ api-level : 29
31
+ target : google-apis
32
+ arch : x86_64
33
+ profile : Nexus 6
34
+ script : ./gradlew :firebase-auth:connectedAndroidTests
Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ plugins {
4
4
id(" com.android.library" )
5
5
kotlin(" multiplatform" )
6
6
kotlin(" native.cocoapods" )
7
- id(" com.quittle.android-emulator" ) version " 0.2.0"
7
+ // id("com.quittle.android-emulator") version "0.2.0"
8
8
}
9
9
10
- buildscript {
11
- repositories {
12
- jcenter()
13
- google()
14
- gradlePluginPortal()
15
- }
16
- dependencies {
17
- classpath(" com.android.tools.build:gradle:3.6.1" )
18
- }
19
- }
10
+ // buildscript {
11
+ // repositories {
12
+ // jcenter()
13
+ // google()
14
+ // gradlePluginPortal()
15
+ // }
16
+ // dependencies {
17
+ // classpath("com.android.tools.build:gradle:3.6.1")
18
+ // }
19
+ // }
20
20
21
21
android {
22
22
compileSdkVersion(property(" targetSdkVersion" ) as Int )
@@ -44,16 +44,17 @@ android {
44
44
}
45
45
46
46
// Optional configuration
47
- androidEmulator {
48
- emulator {
49
- name(" givlive_emulator" )
50
- sdkVersion(28 )
51
- abi(" x86_64" )
52
- includeGoogleApis(true ) // Defaults to false
53
- }
54
-
55
- headless(true ) // Defaults to false but should be set to true for most CI systems
56
- }
47
+ // androidEmulator {
48
+ // emulator {
49
+ // name("givlive_emulator")
50
+ // sdkVersion(28)
51
+ // abi("x86_64")
52
+ // includeGoogleApis(true) // Defaults to false
53
+ //
54
+ // }
55
+ // headless(false)
56
+ // logEmulatorOutput(false)
57
+ // }
57
58
58
59
kotlin {
59
60
js {
You can’t perform that action at this time.
0 commit comments