Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mercury233
ygopro2
Commits
85087a3f
Commit
85087a3f
authored
Jan 25, 2020
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test ci
parent
1ef2a4ae
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
.gitignore
.gitignore
+2
-0
.gitlab-ci.yml
.gitlab-ci.yml
+13
-0
Assets/Editor/BuildHelper.cs
Assets/Editor/BuildHelper.cs
+14
-0
No files found.
.gitignore
View file @
85087a3f
...
...
@@ -64,3 +64,5 @@ AI_core_vs2017solution/core.VC.VC.opendb
AI_core_vs2017solution/System.Servicemodel.Faltexception.dll
[Ll]ibrary_/
Assets/StreamingAssets/update.zip*
/output
.gitlab-ci.yml
0 → 100644
View file @
85087a3f
stages
:
-
build
variables
:
GIT_DEPTH
:
"
1"
ios
:
stage
:
build
script
:
cmd /C gitlab-ci/build.bat
only
:
-
Android
tags
:
-
unity
Assets/Editor/BuildHelper.cs
0 → 100644
View file @
85087a3f
using
UnityEditor
;
using
System.IO
;
using
System.Collections
;
using
UnityEngine
;
using
System.Collections.Generic
;
class
BuildHelper
{
static
void
Build
()
{
string
[]
levels
=
{
"Assets/main.unity"
};
BuildPipeline
.
BuildPlayer
(
levels
,
"output"
,
BuildTarget
.
iOS
,
BuildOptions
.
None
);
}
}
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