use one emulator API

pull/1163/head
Mayowa Egbewunmi 3 years ago
parent 231d25cfc5
commit dad203691a
  1. 6
      .github/workflows/build+deploy.yml
  2. 2
      cameraview/build.gradle.kts

@ -18,7 +18,7 @@ jobs:
distribution: temurin
cache: gradle
- name: Perform base checks
run: ./gradlew assembleRelease --stacktrace
run: ./gradlew build --stacktrace
ANDROID_UNIT_TESTS:
name: Unit Tests
runs-on: ubuntu-latest
@ -40,10 +40,8 @@ jobs:
matrix:
# TODO 29 fails due to Mockito issues, probably reproducible locally
# 22-28 work (some of them, with SdkExclude restrictions)
EMULATOR_API: [22, 23]
EMULATOR_API: [22]
include:
- EMULATOR_API: 23
EMULATOR_ARCH: x86
- EMULATOR_API: 22
EMULATOR_ARCH: x86
steps:

@ -36,7 +36,7 @@ publishing {
groupId = getStringProperty("groupId")
version = getStringProperty("libraryVersion")
artifactId = getStringProperty("artifactId")
artifact("$buildDir/outputs/aar/${artifactId}-release.aar")
artifact("$buildDir/outputs/aar/${project.name}-release.aar")
}
}
}

Loading…
Cancel
Save