2019-09-24 17:25:39 +02:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
|
|
|
|
Windows Portable:
|
|
|
|
stage: build
|
2019-09-24 17:26:18 +02:00
|
|
|
image: syping/qt5-static-mingw-openssl:5.12.4
|
2019-09-24 17:25:39 +02:00
|
|
|
variables:
|
|
|
|
QT_SELECT: "qt5-x86_64-w64-mingw32"
|
|
|
|
script:
|
|
|
|
- mkdir -p build
|
|
|
|
- cd build
|
2019-09-25 15:25:48 +02:00
|
|
|
- qmake-static CONFIG+=WITH_LUAENGINEAPP CONFIG+=WITH_LUAENGINERUN ../luaengineapp.pro
|
2019-09-24 17:25:39 +02:00
|
|
|
- make -j4
|
2019-09-24 17:38:55 +02:00
|
|
|
- cp -Rf src/luaengineapp/release/luaengineapp.exe ../
|
2019-09-25 14:29:52 +02:00
|
|
|
- cp -Rf src/luaenginerun/release/luaengine.exe ../
|
2019-09-24 17:25:39 +02:00
|
|
|
- cd ..
|
|
|
|
artifacts:
|
2019-09-25 14:29:52 +02:00
|
|
|
name: "luaengine-$CI_COMMIT_REF_NAME-${CI_COMMIT_SHA:0:8}"
|
2019-09-24 17:25:39 +02:00
|
|
|
paths:
|
2019-09-25 14:29:52 +02:00
|
|
|
- "luaengine.exe"
|
2019-09-24 17:25:39 +02:00
|
|
|
- "luaengineapp.exe"
|