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/1848 refactoring presence looped #1885

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 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
8836055
Refactoring presence:
maratal Mar 9, 2024
93716bb
Moved `sync` method into the test suit.
maratal Mar 8, 2024
50b9b01
Renamed channel's `serial` to `channelSerial`.
maratal Dec 21, 2023
39d574c
Renamed presence map's localMembers to internalMembers (that's the te…
maratal Dec 22, 2023
91fb495
Merge pull request #1865 from ably/fix/1852-rename-channel-serial
maratal Mar 9, 2024
b301249
Merge pull request #1866 from ably/fix/1849-rename-localMembers
maratal Mar 9, 2024
e365faa
Re-enabled some skipped tests (marked them temporarily as FLAKY for q…
maratal Mar 10, 2024
0dfca49
Merge branch '1279-run-tests-in-loop-iOS17' into fix/1848-refactoring…
maratal Mar 10, 2024
4d43254
Skip fkaky tests that failed on CI (https://test-observability.heroku…
maratal Mar 10, 2024
70b0ba8
Revert "Skip fkaky tests that failed on CI (https://test-observabilit…
maratal Mar 10, 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