Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
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
wyykak
ygopro
Commits
f90dfc9e
Commit
f90dfc9e
authored
Apr 13, 2020
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update lua
parent
45715eb0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
12 deletions
+22
-12
.travis.yml
.travis.yml
+2
-1
appveyor.yml
appveyor.yml
+12
-11
premake/lua/premake4.lua
premake/lua/premake4.lua
+8
-0
No files found.
.travis.yml
View file @
f90dfc9e
...
@@ -13,12 +13,13 @@ addons:
...
@@ -13,12 +13,13 @@ addons:
# - g++-6
# - g++-6
-
libevent-dev
-
libevent-dev
-
libsqlite3-dev
-
libsqlite3-dev
-
liblua5.3-dev
before_install
:
before_install
:
-
git submodule update --init --recursive
-
git submodule update --init --recursive
#- sudo ln -s /usr/bin/gcc-6 /usr/local/bin/gcc
#- sudo ln -s /usr/bin/gcc-6 /usr/local/bin/gcc
#- sudo ln -s /usr/bin/g++-6 /usr/local/bin/g++
#- sudo ln -s /usr/bin/g++-6 /usr/local/bin/g++
#- g++ --version
#- g++ --version
-
wget -O - https://github.com/premake/premake-core/releases/download/v5.0.0-alpha1
3/premake-5.0.0-alpha13
-linux.tar.gz | tar zfx -
-
wget -O - https://github.com/premake/premake-core/releases/download/v5.0.0-alpha1
4/premake-5.0.0-alpha14
-linux.tar.gz | tar zfx -
#- wget -O - https://www.lua.org/ftp/lua-5.3.5.tar.gz | tar zfx -; cd lua-5.3.5; sudo make linux install; cd ..
#- wget -O - https://www.lua.org/ftp/lua-5.3.5.tar.gz | tar zfx -; cd lua-5.3.5; sudo make linux install; cd ..
script
:
script
:
-
./premake5 gmake
-
./premake5 gmake
...
...
appveyor.yml
View file @
f90dfc9e
version
:
'
{build}'
version
:
'
{build}'
image
:
Visual Studio
2019
install
:
install
:
-
git submodule update --init --recursive
-
git submodule update --init --recursive
# environment and system dependency
# environment and system dependency
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-alpha1
0/premake-5.0.0-alpha10
-windows.zip ; exit 0"
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-alpha1
4/premake-5.0.0-alpha14
-windows.zip ; exit 0"
-
7z x premake-5.0.0-alpha1
0
-windows.zip
-
7z x premake-5.0.0-alpha1
4
-windows.zip
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz ; exit 0"
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz ; exit 0"
-
tar xf libevent-2.0.22-stable.tar.gz
-
tar xf libevent-2.0.22-stable.tar.gz
-
move libevent-2.0.22-stable event
-
move libevent-2.0.22-stable event
-
xcopy /E event\WIN32-Code event\include
-
xcopy /E event\WIN32-Code event\include
#
- bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.lua.org/ftp/lua-5.3.5.tar.gz ; exit 0"
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.lua.org/ftp/lua-5.3.5.tar.gz ; exit 0"
#
- tar xf lua-5.3.5.tar.gz
-
tar xf lua-5.3.5.tar.gz
#
- move lua-5.3.5\src lua
-
move lua-5.3.5\src lua
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/20
17/sqlite-amalgamation-32000
00.zip ; exit 0"
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/20
20/sqlite-amalgamation-33101
00.zip ; exit 0"
-
7z x sqlite-amalgamation-3
2000
00.zip
-
7z x sqlite-amalgamation-3
3101
00.zip
-
move sqlite-amalgamation-3
2000
00 sqlite3
-
move sqlite-amalgamation-3
3101
00 sqlite3
# let premake happy
# let premake happy
-
xcopy /E premake\* .
-
xcopy /E premake\* .
# premake
# premake
-
premake5 vs201
5
-
premake5 vs201
9
configuration
:
Release
configuration
:
Release
...
@@ -42,7 +43,7 @@ artifacts:
...
@@ -42,7 +43,7 @@ artifacts:
name
:
ygopro(server)
name
:
ygopro(server)
cache
:
cache
:
-
premake-5.0.0-alpha1
0
-windows.zip
-
premake-5.0.0-alpha1
4
-windows.zip
-
libevent-2.0.22-stable.tar.gz
-
libevent-2.0.22-stable.tar.gz
-
lua-5.3.5.tar.gz
-
lua-5.3.5.tar.gz
-
sqlite-amalgamation-3
2000
00.zip
-
sqlite-amalgamation-3
3101
00.zip
premake/lua/premake4.lua
0 → 100644
View file @
f90dfc9e
project
"lua"
kind
"StaticLib"
files
{
"*.c"
,
"*.cpp"
,
"*.h"
,
"*.hpp"
}
removefiles
{
"lua.c"
,
"luac.c"
}
configuration
"vs*"
buildoptions
{
"/TP"
}
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