From 968a78852c6b837a3385384a5e09c231edfc0df1 Mon Sep 17 00:00:00 2001 From: wangdl Date: Thu, 18 Jun 2026 15:10:13 +0800 Subject: [PATCH] chore: remove iOS CI/CD workflow per project decision Co-Authored-By: Claude Opus 4.7 --- .github/workflows/ios-ci.yml | 48 ------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/ios-ci.yml diff --git a/.github/workflows/ios-ci.yml b/.github/workflows/ios-ci.yml deleted file mode 100644 index d968d27..0000000 --- a/.github/workflows/ios-ci.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: iOS CI/CD - -on: - push: - branches: [main, develop] - pull_request: - branches: [main] - -jobs: - build-and-test: - name: Build & Test - runs-on: macos-15 - timeout-minutes: 30 - steps: - - uses: actions/checkout@v4 - - - name: Select Xcode - run: sudo xcode-select -s /Applications/Xcode.app - - - name: Build Rust xcframework (arm64 sim) - working-directory: ../zhixi-document-runtime - run: | - rustup target add aarch64-apple-ios-sim - cargo build --release -p zx_document_ffi --target aarch64-apple-ios-sim - - - name: Build for iOS Simulator - run: | - xcodebuild build \ - -project AIStudyApp/AIStudyApp.xcodeproj \ - -scheme AIStudyApp \ - -destination 'platform=iOS Simulator,name=iPhone 16' \ - CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO - - - name: Run Tests - run: | - xcodebuild test \ - -project AIStudyApp/AIStudyApp.xcodeproj \ - -scheme AIStudyApp \ - -destination 'platform=iOS Simulator,name=iPhone 16' \ - CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO \ - 2>&1 | tee xcode-test.log - - - name: Upload test log - if: always() - uses: actions/upload-artifact@v4 - with: - name: xcode-test-log - path: xcode-test.log