拒单原因修改

This commit is contained in:
DDIsFriend
2023-09-05 09:52:25 +08:00
parent 3b9b465d22
commit f0812dad0c
15 changed files with 598 additions and 4 deletions

6
fastlane/Appfile Normal file
View File

@@ -0,0 +1,6 @@
# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app
# apple_id("[[APPLE_ID]]") # Your Apple Developer Portal username
# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile

37
fastlane/Fastfile Normal file
View File

@@ -0,0 +1,37 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Description of what the lane does"
lane :debug do
# add actions here: https://docs.fastlane.tools/actions
gym(
scheme:"OrderScheduling",
workspace:"OrderScheduling.xcworkspace",
clean:true,
output_directory:"/Users/zd/Desktop/Ipa包/中道调度/Debug",
output_name:"drivers_debug",
configuration:"Debug",
include_symbols:true,
build_path:"/Users/zd/Desktop/Ipa包/中道调度/Debug",
archive_path:"/Users/zd/Desktop/Ipa包/中道调度/Debug",
include_bitcode: false,
export_method:"development"
)
pgyer(api_key: "f024760fe1519016c3a61b7a29f19dcb", update_description: "开发环境")
end
end

5
fastlane/Pluginfile Normal file
View File

@@ -0,0 +1,5 @@
# Autogenerated by fastlane
#
# Ensure this file is checked in to source control!
gem 'fastlane-plugin-pgyer'

32
fastlane/README.md Normal file
View File

@@ -0,0 +1,32 @@
fastlane documentation
----
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```sh
xcode-select --install
```
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
# Available Actions
## iOS
### ios debug
```sh
[bundle exec] fastlane ios debug
```
Description of what the lane does
----
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

23
fastlane/report.xml Normal file
View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="fastlane.lanes">
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000162">
</testcase>
<testcase classname="fastlane.lanes" name="1: gym" time="66.718124">
</testcase>
<testcase classname="fastlane.lanes" name="2: pgyer" time="22.808324">
</testcase>
</testsuite>
</testsuites>