Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
FuryLion Fastlane plugin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vadim Vlasov
FuryLion Fastlane plugin
Commits
93994e7f
Commit
93994e7f
authored
Jul 10, 2024
by
Vadim Vlasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added additional arguments for Unity
parent
ef3319f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
16 deletions
+11
-16
lib/fastlane/plugin/furylion/actions/unity.rb
lib/fastlane/plugin/furylion/actions/unity.rb
+10
-15
lib/fastlane/plugin/furylion/version.rb
lib/fastlane/plugin/furylion/version.rb
+1
-1
No files found.
lib/fastlane/plugin/furylion/actions/unity.rb
View file @
93994e7f
...
...
@@ -11,23 +11,14 @@ module Fastlane
end
build_cmd
<<
" -projectPath
#{
params
[
:project_path
]
}
"
if
params
[
:batch_mode
]
build_cmd
<<
" -batchmode"
end
if
params
[
:quit
]
build_cmd
<<
" -quit"
end
if
params
[
:no_graphics
]
build_cmd
<<
" -nographics"
end
build_cmd
<<
" -batchmode"
if
params
[
:batch_mode
]
build_cmd
<<
" -quit"
if
params
[
:quit
]
build_cmd
<<
" -nographics"
if
params
[
:no_graphics
]
build_cmd
<<
" -executeMethod
#{
params
[
:execute_method
]
}
"
build_cmd
<<
" -buildTarget
#{
params
[
:build_target
]
}
"
build_cmd
<<
" -logFile
#{
params
[
:log_file
]
}
"
build_cmd
<<
" -quitTimeout
#{
params
[
:quit_timeout
]
}
"
build_cmd
<<
"
#{
params
[
:args
]
}
"
UI
.
message
""
UI
.
message
Terminal
::
Table
.
new
(
...
...
@@ -37,12 +28,12 @@ module Fastlane
)
UI
.
message
""
UI
.
message
"Start
running
"
UI
.
message
"Start
ing Unity...
"
UI
.
message
""
sh
build_cmd
UI
.
success
"
C
ompleted"
UI
.
success
"
Unity process c
ompleted"
end
#####################################################
...
...
@@ -106,6 +97,10 @@ module Fastlane
is_string:
false
,
description:
"Close Unity after script execution"
,
default_value:
true
),
FastlaneCore
::
ConfigItem
.
new
(
key: :args
,
env_name:
"UNITY_ARGS"
,
optional:
true
,
description:
"Additional arguments to pass to the Unity"
),
]
end
...
...
lib/fastlane/plugin/furylion/version.rb
View file @
93994e7f
module
Fastlane
module
Furylion
VERSION
=
"1.1.
1
"
VERSION
=
"1.1.
2
"
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment