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
246a53fe
Commit
246a53fe
authored
Feb 16, 2023
by
Vadim Vlasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added optional batch mode, no graphics, quit for Unity.
parent
061b454e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
4 deletions
+29
-4
.gitignore
.gitignore
+2
-0
lib/fastlane/plugin/furylion/actions/unity.rb
lib/fastlane/plugin/furylion/actions/unity.rb
+26
-3
lib/fastlane/plugin/furylion/version.rb
lib/fastlane/plugin/furylion/version.rb
+1
-1
No files found.
.gitignore
View file @
246a53fe
...
@@ -10,3 +10,5 @@ fastlane/README.md
...
@@ -10,3 +10,5 @@ fastlane/README.md
fastlane/report.xml
fastlane/report.xml
coverage
coverage
test-results
test-results
.idea
.DS_Store
lib/fastlane/plugin/furylion/actions/unity.rb
View file @
246a53fe
...
@@ -11,10 +11,18 @@ module Fastlane
...
@@ -11,10 +11,18 @@ module Fastlane
end
end
build_cmd
<<
" -projectPath
#{
params
[
:project_path
]
}
"
build_cmd
<<
" -projectPath
#{
params
[
:project_path
]
}
"
if
params
[
:batch_mode
]
build_cmd
<<
" -batchmode"
build_cmd
<<
" -batchmode"
end
if
params
[
:quit
]
build_cmd
<<
" -quit"
build_cmd
<<
" -quit"
end
if
params
[
:no_graphics
]
build_cmd
<<
" -nographics"
build_cmd
<<
" -nographics"
end
build_cmd
<<
" -executeMethod
#{
params
[
:execute_method
]
}
"
build_cmd
<<
" -executeMethod
#{
params
[
:execute_method
]
}
"
build_cmd
<<
" -buildTarget
#{
params
[
:build_target
]
}
"
build_cmd
<<
" -buildTarget
#{
params
[
:build_target
]
}
"
...
@@ -80,6 +88,21 @@ module Fastlane
...
@@ -80,6 +88,21 @@ module Fastlane
description:
"Quit Timeout"
,
description:
"Quit Timeout"
,
optional:
true
,
optional:
true
,
default_value:
300
),
default_value:
300
),
FastlaneCore
::
ConfigItem
.
new
(
key: :no_graphics
,
env_name:
"UNITY_NO_GRAPHICS"
,
description:
"Disable graphics mode"
,
optional:
true
,
default_value:
true
),
FastlaneCore
::
ConfigItem
.
new
(
key: :batch_mode
,
env_name:
"UNITY_BATCH_MODE"
,
description:
"Use batch mode"
,
optional:
true
,
default_value:
true
),
FastlaneCore
::
ConfigItem
.
new
(
key: :quit
,
env_name:
"UNITY_QUIT"
,
optional:
true
,
description:
"Close Unity after script execution"
,
default_value:
true
),
]
]
end
end
...
...
lib/fastlane/plugin/furylion/version.rb
View file @
246a53fe
module
Fastlane
module
Fastlane
module
Furylion
module
Furylion
VERSION
=
"1.
0
.0"
VERSION
=
"1.
1
.0"
end
end
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