-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
./Scripts/set-ci-length-and-parallelism.sh --workflows 2 --jobs-per-w…
…orkflow 4
- Loading branch information
1 parent
871253b
commit be2647c
Showing
3 changed files
with
416 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,208 @@ | ||
name: "Integration Test: iOS 16.2 (workflow 1)" | ||
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-1: | ||
runs-on: macos-latest | ||
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 (14.2) | ||
run: | | ||
sudo xcode-select -s /Applications/Xcode_14.2.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_iOS16_2 | ||
- name: Upload .xcresult bundles | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: xcresult-bundles-1.tar.gz | ||
path: xcresult-bundles.tar.gz | ||
check-2: | ||
runs-on: macos-latest | ||
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 (14.2) | ||
run: | | ||
sudo xcode-select -s /Applications/Xcode_14.2.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_iOS16_2 | ||
- name: Upload .xcresult bundles | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: xcresult-bundles-2.tar.gz | ||
path: xcresult-bundles.tar.gz | ||
needs: | ||
- check-1 | ||
check-3: | ||
runs-on: macos-latest | ||
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 (14.2) | ||
run: | | ||
sudo xcode-select -s /Applications/Xcode_14.2.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_iOS16_2 | ||
- name: Upload .xcresult bundles | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: xcresult-bundles-3.tar.gz | ||
path: xcresult-bundles.tar.gz | ||
needs: | ||
- check-2 | ||
check-4: | ||
runs-on: macos-latest | ||
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 (14.2) | ||
run: | | ||
sudo xcode-select -s /Applications/Xcode_14.2.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_iOS16_2 | ||
- name: Upload .xcresult bundles | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: xcresult-bundles-4.tar.gz | ||
path: xcresult-bundles.tar.gz | ||
needs: | ||
- check-3 |
Oops, something went wrong.