-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1279-run-tests-in-loop-iOS17' into fix/1889-unskip-pres…
…ense-tests-looped
- Loading branch information
Showing
10 changed files
with
836 additions
and
313 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: "Integration Test: iOS 17.2" | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
# IMPORTANT NOTES: | ||
# - Changes made to this file needs to replicated across other integration-test-*.yaml files. | ||
# - The Fastlane lane name is duplicated in more than one place within this workflow. | ||
|
||
jobs: | ||
check: | ||
runs-on: macos-13 | ||
|
||
env: | ||
LC_CTYPE: en_US.UTF-8 | ||
LANG: en_US.UTF-8 | ||
ABLY_ENV: sandbox | ||
|
||
steps: | ||
- name: Check out SDK repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Select Specific Xcode Version (15.1) | ||
run: | | ||
sudo xcode-select -s /Applications/Xcode_15.1.app | ||
echo "Selected Xcode version:" | ||
xcodebuild -version | ||
- name: Log environment information | ||
run: ./Scripts/log-environment-information.sh | ||
|
||
- name: Check out xcparse repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ably-forks/xcparse | ||
ref: emit-test-case-info | ||
path: xcparse | ||
|
||
- id: get-xcparse-commit-sha | ||
name: Get xcparse commit SHA | ||
run: | | ||
cd xcparse | ||
echo "::set-output name=sha::$(git rev-parse HEAD)" | ||
- name: "actions/cache@v3 (xcparse binary)" | ||
uses: actions/cache@v3 | ||
with: | ||
path: xcparse/.build/debug/xcparse | ||
key: ${{ runner.os }}-xcparse-${{ steps.get-xcparse-commit-sha.outputs.sha }} | ||
|
||
- name: Install Dependencies and Run Tests Continuously | ||
env: | ||
TEST_OBSERVABILITY_SERVER_AUTH_KEY: ${{ secrets.TEST_OBSERVABILITY_SERVER_AUTH_KEY }} | ||
run: | | ||
brew install xcbeautify | ||
brew install coreutils # for `timeout` | ||
make submodules | ||
bundle install | ||
make update_carthage_dependencies_ios | ||
Scripts/continuously-run-tests-and-upload-results.sh --lane test_iOS17_2 | ||
- name: Upload .xcresult bundles | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: xcresult-bundles.tar.gz | ||
path: xcresult-bundles.tar.gz |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.