-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "[CI] Sync tests with Device farm (#1605)"
This reverts commit c2e0810.
- Loading branch information
Christian Melchior
committed
Jan 10, 2024
1 parent
c2e0810
commit 8271b37
Showing
5 changed files
with
10 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,6 @@ on: | |
value: ${{ jobs.check-cache.outputs.packages-android-cache-hit }} | ||
android-test-base-apk-cache-hit: | ||
value: ${{ jobs.check-cache.outputs.android-test-base-apk-cache-hit }} | ||
android-test-sync-apk-cache-hit: | ||
value: ${{ jobs.check-cache.outputs.android-test-sync-apk-cache-hit }} | ||
packages-macos-x64-cache-hit: | ||
value: ${{ jobs.check-cache.outputs.packages-macos-x64-cache-hit }} | ||
packages-macos-arm64-cache-hit: | ||
|
@@ -65,7 +63,6 @@ jobs: | |
packages-jvm-cache-hit: ${{ steps.jvm-cache.outputs.cache-hit }} | ||
packages-android-cache-hit: ${{ steps.android-cache.outputs.cache-hit }} | ||
android-test-base-apk-cache-hit: ${{ steps.android-test-base-apk.outputs.cache-hit }} | ||
android-test-sync-apk-cache-hit: ${{ steps.android-test-sync-apk.outputs.cache-hit }} | ||
packages-macos-x64-cache-hit: ${{ steps.macos-x64-cache.outputs.cache-hit }} | ||
packages-macos-arm64-cache-hit: ${{ steps.macos-arm64-cache.outputs.cache-hit }} | ||
packages-ios-x64-cache-hit: ${{ steps.ios-x64-cache.outputs.cache-hit }} | ||
|
@@ -279,18 +276,6 @@ jobs: | |
path: ./packages/test-base/build/outputs/apk/androidTest/debug/test-base-debug-androidTest.apk | ||
key: android-base-test-apk-key-${{ steps.packages-cache-key.outputs.sha }} | ||
|
||
# | ||
# Android Sync Test APK | ||
# | ||
- name: Check Android Sync Test APK | ||
id: android-test-sync-apk | ||
uses: cmelchior/cache@main | ||
with: | ||
key: android-sync-test-apk-key-${{ steps.packages-cache-key.outputs.sha }} | ||
path: | | ||
./packages/test-sync/build/outputs/apk/androidTest/debug/test-sync-debug-androidTest.apk | ||
./packages/test-sync/build/outputs/apk/debug/test-sync-debug.apk | ||
- name: Save Android Test APK | ||
uses: actions/upload-artifact@v3 | ||
if: always() && !cancelled() && steps.android-test-base-apk.outputs.cache-hit == 'true' | ||
|
@@ -299,32 +284,13 @@ jobs: | |
path: ./packages/test-base/build/outputs/apk/androidTest/debug/test-base-debug-androidTest.apk | ||
retention-days: 1 | ||
|
||
- name: Save Android Sync Test APK | ||
uses: actions/upload-artifact@v3 | ||
if: always() && !cancelled() && steps.android-test-sync-apk.outputs.cache-hit == 'true' | ||
with: | ||
name: android-sync-test-apk-${{ steps.find-library-version.outputs.label }} | ||
retention-days: 1 | ||
path: | | ||
./packages/test-sync/build/outputs/apk/androidTest/debug/test-sync-debug-androidTest.apk | ||
./packages/test-sync/build/outputs/apk/debug/test-sync-debug.apk | ||
- name: Delete Android Test APK cache files | ||
id: delete-cache-android-base-test-apk | ||
uses: JesseTG/[email protected] | ||
if: always() && !cancelled() && steps.android-test-base-apk.outputs.cache-hit == 'true' | ||
with: | ||
path: ./packages/test-base/build/outputs/apk/androidTest/debug/test-base-debug-androidTest.apk | ||
|
||
- name: Delete Android Sync Test APK cache files | ||
id: delete-cache-android-sync-test-apk | ||
uses: JesseTG/[email protected] | ||
if: always() && !cancelled() && steps.android-test-sync-apk.outputs.cache-hit == 'true' | ||
with: | ||
path: | | ||
./packages/test-sync/build/outputs/apk/androidTest/debug/test-sync-debug-androidTest.apk | ||
./packages/test-sync/build/outputs/apk/debug/test-sync-debug.apk | ||
# | ||
# MacOS arm64 | ||
# | ||
|
Oops, something went wrong.