V5: Use StreamCore based chat #2509
This file contains hidden or 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
| name: Smoke Checks | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'CHANGELOG.md' | |
| workflow_dispatch: | |
| inputs: | |
| record_snapshots: | |
| description: 'Record snapshots on CI?' | |
| type: boolean | |
| required: false | |
| default: false | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI | |
| IOS_SIMULATOR_DEVICE: "iPhone 17 Pro (26.0)" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GITHUB_PR_NUM: ${{ github.event.pull_request.number }} | |
| jobs: | |
| build-test-app-and-frameworks: | |
| name: Build Test App and Frameworks | |
| runs-on: macos-15 | |
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: ./.github/actions/ruby-cache | |
| - uses: ./.github/actions/xcode-cache | |
| - name: Build | |
| run: bundle exec fastlane build_test_app_and_frameworks | |
| timeout-minutes: 60 | |
| - uses: actions/upload-artifact@v4 | |
| if: success() | |
| with: | |
| name: cache-derived-data | |
| path: | | |
| derived_data/Build/**/*.app | |
| derived_data/Build/**/*.xctestrun | |
| derived_data/Build/**/*.framework | |
| automated-code-review: | |
| name: Automated Code Review | |
| runs-on: macos-14 | |
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | |
| env: | |
| XCODE_VERSION: "16.1" | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: ./.github/actions/bootstrap | |
| env: | |
| INSTALL_INTERFACE_ANALYZER: true | |
| - run: bundle exec fastlane lint_pr | |
| - run: bundle exec fastlane rubocop | |
| - run: bundle exec fastlane run_swift_format strict:true | |
| - run: bundle exec fastlane validate_public_interface | |
| - run: bundle exec fastlane pod_lint | |
| if: startsWith(github.event.pull_request.head.ref, 'release/') | |
| build-old-xcode: | |
| name: Build SDKs (Old Xcode) | |
| runs-on: macos-14 | |
| if: false # Disabled for now ${{ github.event.inputs.record_snapshots != 'true' }} | |
| env: | |
| XCODE_VERSION: "16.1" | |
| steps: | |
| - name: Connect Bot | |
| uses: webfactory/[email protected] | |
| with: | |
| ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} | |
| - uses: actions/[email protected] | |
| - uses: ./.github/actions/xcode-cache | |
| - uses: ./.github/actions/ruby-cache | |
| - name: Build SwiftUI | |
| run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true | |
| timeout-minutes: 25 | |
| - name: Build XCFrameworks | |
| run: bundle exec fastlane build_xcframeworks | |
| timeout-minutes: 25 | |
| env: | |
| MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
| APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }} | |
| test-ui-debug: | |
| name: Test SwiftUI (Debug) | |
| runs-on: macos-15 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.CI_BOT_GITHUB_TOKEN }} # to open a PR | |
| IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181 | |
| XCODE_VERSION: "16.4" # TODO: IOS-1181 | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: ./.github/actions/bootstrap | |
| env: | |
| INSTALL_YEETD: true | |
| INSTALL_SONAR: true | |
| - name: Run UI Tests (Debug) | |
| run: bundle exec fastlane test_ui device:"${{ env.IOS_SIMULATOR_DEVICE }}" record:"${{ github.event.inputs.record_snapshots }}" | |
| timeout-minutes: 120 | |
| - name: Run Sonar analysis | |
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | |
| run: bundle exec fastlane sonar_upload | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| - name: Parse xcresult | |
| if: failure() | |
| run: | | |
| brew install chargepoint/xcparse/xcparse | |
| xcparse logs fastlane/test_output/StreamChatSwiftUI.xcresult fastlane/test_output/logs/ | |
| xcparse screenshots fastlane/test_output/StreamChatSwiftUI.xcresult fastlane/test_output/snapshots --test | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: Test Data UI | |
| path: | | |
| fastlane/recordings | |
| fastlane/sinatra_log.txt | |
| fastlane/test_output/snapshots | |
| fastlane/test_output/logs/*/Diagnostics/**/*.txt | |
| fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/* | |
| - name: Upload Test Coverage | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-coverage-${{ github.event.pull_request.number }} | |
| path: reports/sonarqube-generic-coverage.xml | |
| allure_testops_launch: | |
| name: Launch Allure TestOps | |
| runs-on: macos-15 | |
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | |
| needs: build-test-app-and-frameworks | |
| outputs: | |
| launch_id: ${{ steps.get_launch_id.outputs.launch_id }} | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: ./.github/actions/ruby-cache | |
| - name: Launch Allure TestOps | |
| run: bundle exec fastlane allure_launch | |
| env: | |
| ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} | |
| GITHUB_EVENT: ${{ toJson(github.event) }} | |
| - id: get_launch_id | |
| run: echo "launch_id=${{env.LAUNCH_ID}}" >> $GITHUB_OUTPUT | |
| if: env.LAUNCH_ID != '' | |
| test-e2e-debug: | |
| name: Test E2E UI (Debug) | |
| runs-on: macos-15 | |
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | |
| needs: | |
| - allure_testops_launch | |
| - build-test-app-and-frameworks | |
| env: | |
| LAUNCH_ID: ${{ needs.allure_testops_launch.outputs.launch_id }} | |
| IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181 | |
| XCODE_VERSION: "16.4" # TODO: IOS-1181 | |
| strategy: | |
| matrix: | |
| batch: [0, 1] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: cache-derived-data | |
| path: derived_data/Build/ | |
| - uses: ./.github/actions/bootstrap | |
| env: | |
| INSTALL_ALLURE: true | |
| INSTALL_YEETD: true | |
| SKIP_SWIFT_BOOTSTRAP: true | |
| - name: Run UI Tests (Debug) | |
| run: bundle exec fastlane test_e2e_mock device:"${{ env.IOS_SIMULATOR_DEVICE }}" batch:'${{ matrix.batch }}' test_without_building:true | |
| timeout-minutes: 100 | |
| env: | |
| MATRIX_SIZE: ${{ strategy.job-total }} | |
| - name: Allure TestOps Upload | |
| if: env.LAUNCH_ID != '' && (success() || failure()) | |
| run: bundle exec fastlane allure_upload launch_id:$LAUNCH_ID | |
| env: | |
| ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} | |
| - name: Allure TestOps Launch Removal | |
| if: env.LAUNCH_ID != '' && cancelled() | |
| run: bundle exec fastlane allure_launch_removal launch_id:$LAUNCH_ID | |
| env: | |
| ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} | |
| - name: Parse xcresult | |
| if: failure() | |
| run: | | |
| brew install chargepoint/xcparse/xcparse | |
| xcparse logs fastlane/test_output/StreamChatSwiftUITestsApp.xcresult fastlane/test_output/logs/ | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: Test Data E2E ${{ matrix.batch }} | |
| path: | | |
| fastlane/recordings | |
| fastlane/sinatra_log.txt | |
| fastlane/test_output/report.junit | |
| fastlane/test_output/logs/*/Diagnostics/**/*.txt | |
| fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/* | |
| build-apps: | |
| name: Build Demo App | |
| runs-on: macos-15 | |
| if: ${{ github.event.inputs.record_snapshots != 'true' }} | |
| needs: build-test-app-and-frameworks | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: cache-derived-data | |
| path: derived_data/Build/ | |
| - uses: ./.github/actions/ruby-cache | |
| - uses: ./.github/actions/xcode-cache | |
| - name: Build Demo App | |
| run: bundle exec fastlane build_demo |