Parcourir la source

Keep only 15.2

onevcat il y a 1 an
Parent
commit
575b579d1d
2 fichiers modifiés avec 1 ajouts et 7 suppressions
  1. 0 5
      .github/workflows/build.yaml
  2. 1 2
      fastlane/Fastfile

+ 0 - 5
.github/workflows/build.yaml

@@ -13,10 +13,6 @@ jobs:
           'tvOS Simulator,name=Apple TV', 
           'watchOS Simulator,name=Apple Watch Series 8 (41mm)'
         ]
-        xcode: [
-          '15.2',
-          '15.3'
-        ]
     steps:
       - uses: actions/checkout@v4
       - uses: ruby/setup-ruby@v1
@@ -25,5 +21,4 @@ jobs:
       - name: Run tests
         env:
           DESTINATION: platform=${{ matrix.destination }}
-          XCODE_VERSION: ${{ matrix.xcode }}
         run: bundle exec fastlane test_ci

+ 1 - 2
fastlane/Fastfile

@@ -130,8 +130,7 @@ platform :ios do
   end
 
   before_all do |lane|
-    xcode_version = ENV["XCODE_VERSION"] || "15.3"
-    xcodes(version: xcode_version, select_for_current_build_only: true)
+    xcodes(version: "15.2", select_for_current_build_only: true)
   end
 
   after_all do |lane|