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 1981 is synthesized fix in loop #1983

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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.

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

This file was deleted.

Loading
Loading