Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/1406 unskip tests in loop #1949

Draft
wants to merge 26 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7191523
Run iOS 16 tests continuously and upload results to observability server
lawrence-forooghian Feb 10, 2022
92af9ad
Print xcodebuild raw output as part of loop
lawrence-forooghian Mar 1, 2022
e61efb4
Add script for fetching test case logs from GitHub
lawrence-forooghian Mar 29, 2022
2b142cb
Upload .xcresult bundles as an artifact
lawrence-forooghian Apr 11, 2022
b774222
Make sure continuously-run-tests-and-upload-results.sh doesn’t exceed…
lawrence-forooghian Apr 12, 2022
12e2d11
Log the size of .xcresult bundles waiting to be uploaded
lawrence-forooghian Apr 12, 2022
3e54f93
Tar and zip the xcresult bundles
lawrence-forooghian Apr 12, 2022
1940e9a
Add script for generating multiple jobs and workflows
lawrence-forooghian May 12, 2022
d344300
Merge remote-tracking branch 'origin/main' into 1279-run-tests-in-loo…
maratal Feb 11, 2024
886fc5e
Merge remote-tracking branch 'origin/main' into 1279-run-tests-in-loo…
maratal Apr 28, 2024
ffff242
Unskip RealtimeClientConnectionTests tests that doesn't fail locally.
maratal Jul 14, 2024
8843277
Merge branch 'fix/1945-max-message-size' into fix/1406-unskip-tests
maratal Jul 14, 2024
5ec2dac
Unskip RealtimeClientTests tests that doesn't fail locally.
maratal Jul 15, 2024
7108406
Merge branch 'main' into fix/1406-unskip-tests
maratal Jul 20, 2024
d3f2af7
Unskip RestClientPresenceTests tests that doesn't fail locally.
maratal Jul 20, 2024
54b23cc
Unskip RealtimeClientChannelTests tests that doesn't fail locally.
maratal Jul 20, 2024
1fbc2d5
Unskip RestClientChannelTests tests that doesn't fail locally.
maratal Jul 20, 2024
1e8e70c
Unskip AuthTests tests that doesn't fail locally.
maratal Jul 20, 2024
1ee8e6d
Unskip PushAdminTests tests that doesn't fail locally.
maratal Jul 20, 2024
1b09729
Unskip RestClientStatsTests tests that doesn't fail locally.
maratal Jul 20, 2024
4bbc5f6
Merge branch '1279-run-tests-in-loop-iOS17' into fix/1406-unskip-tests
maratal Jul 21, 2024
cc0c394
Removed docs workflow.
maratal Jul 21, 2024
198139d
Fix `Connection.maxMessageSize`: if not set, take whatever is set in …
maratal Jul 21, 2024
5751413
Unskip "test__090...." test in RealtimeClientChannelTests.
maratal Jul 21, 2024
1cd9d0a
Fix `expectDataToMatch` function that was causing tests to fail. Unsk…
maratal Jul 21, 2024
a621525
Merge branch 'fix/1406-unskip-tests' into fix/1406-unskip-tests-in-loop
maratal Jul 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 0 additions & 58 deletions .github/workflows/check-pod.yaml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/docs.yml

This file was deleted.

69 changes: 0 additions & 69 deletions .github/workflows/examples.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/features.yml

This file was deleted.

70 changes: 70 additions & 0 deletions .github/workflows/integration-test-iOS17_2.yaml
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
119 changes: 0 additions & 119 deletions .github/workflows/integration-test.yaml

This file was deleted.

Loading
Loading