Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe authored Oct 19, 2024
2 parents e9378b7 + d472242 commit 9f7b2d6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
- name: Assemble Debug APK
run: bash ./gradlew sample:assembleDebug
- name: Upload app APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: apk
name: debug-apk
path: sample/build/outputs/apk/debug/sample-debug.apk

assemble-debug-android-test-apk:
Expand All @@ -65,9 +65,9 @@ jobs:
- name: Assemble Instrumental APK
run: bash ./gradlew sample:assembleDebugAndroidTest
- name: Upload app APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: apk
name: test-apk
path: sample/build/outputs/apk/androidTest/debug/sample-debug-androidTest.apk

firebase-lab-test:
Expand All @@ -80,16 +80,20 @@ jobs:
api: [ 26, 27, 28, 29, 30, 31, 32, 33 ]
steps:
- uses: actions/checkout@v1
- name: Download APKs
uses: actions/download-artifact@v1
- name: Download Debug APK
uses: actions/download-artifact@v4
with:
name: debug-apk
- name: Download Test APK
uses: actions/download-artifact@v4
with:
name: apk
name: test-apk
- name: Run tests on Firebase Test Lab for API ${{ matrix.api }}
uses: vacxe/[email protected]
with:
service-account: ${{ secrets.FIREBASE_TESTLAB_JSON }}
app: apk/sample-debug.apk
test: apk/sample-debug-androidTest.apk
app: sample-debug.apk
test: sample-debug-androidTest.apk
device-id: MediumPhone.arm
os-version-id: ${{ matrix.api }}
num-flaky-test-attempts: 4
2 changes: 1 addition & 1 deletion kakao/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.2
3.6.3

0 comments on commit 9f7b2d6

Please sign in to comment.