Update 16pro.yml
This commit is contained in:
@@ -34,6 +34,13 @@ jobs:
|
|||||||
EOF
|
EOF
|
||||||
bundle install
|
bundle install
|
||||||
|
|
||||||
|
- name: Create Minimal Xcode Project
|
||||||
|
run: |
|
||||||
|
cd fastlane
|
||||||
|
mkdir DummyProject
|
||||||
|
cd DummyProject
|
||||||
|
xcodebuild -create-file -name DummyProject.xcodeproj
|
||||||
|
|
||||||
- name: Create Minimal Fastfile
|
- name: Create Minimal Fastfile
|
||||||
run: |
|
run: |
|
||||||
cd fastlane
|
cd fastlane
|
||||||
@@ -43,10 +50,10 @@ jobs:
|
|||||||
platform :ios do
|
platform :ios do
|
||||||
desc "Run tests"
|
desc "Run tests"
|
||||||
lane :scan_test do
|
lane :scan_test do
|
||||||
scan(device: "iPhone 16 Pro")
|
scan(device: "iPhone 16 Pro", project: "DummyProject/DummyProject.xcodeproj")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
- name: Attempt to Run Fastlane Scan (Reproduce Error)
|
- name: Attempt to Run Fastlane Scan (Reproduce Original Error)
|
||||||
run: cd fastlane && bundle exec fastlane scan_test || true # Allow the step to fail and show the error
|
run: cd fastlane && bundle exec fastlane scan_test || true # Allow the step to fail and show the error
|
||||||
|
|||||||
Reference in New Issue
Block a user