diff --git a/.circleci/config.yml b/.circleci/config.yml index d4da82a4e9b16f..a27bbc69b48cd4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -535,6 +535,16 @@ jobs: - run: name: "Run Tests: iOS Unit and Integration Tests" command: yarn test-ios + - run: + name: Zip Derived data folder + when: always + command: | + echo "zipping tests results" + cd /Users/distiller/Library/Developer/Xcode + XCRESULT_PATH=$(find . -name '*.xcresult') + tar -zcvf xcresults.tar.gz $XCRESULT_PATH + - store_artifacts: + path: /Users/distiller/Library/Developer/Xcode/xcresults.tar.gz # Optionally, run disabled tests - when: @@ -561,6 +571,7 @@ jobs: - store_test_results: path: ./reports/junit + # ------------------------- # JOBS: Test Android # ------------------------- diff --git a/scripts/.tests.env b/scripts/.tests.env index e6ab94a811761c..738d6f053114d3 100644 --- a/scripts/.tests.env +++ b/scripts/.tests.env @@ -25,7 +25,7 @@ export ANDROID_DISABLE_AVD_TESTS=1 ## IOS ## export IOS_TARGET_OS="latest" -export IOS_DEVICE="iPhone 8" +export IOS_DEVICE="iPhone 13" export SDK_IOS="iphonesimulator" ## CI OVERRIDES ##