GitLab CI

This commit is contained in:
Syping 2019-09-24 17:25:39 +02:00
parent 92e9d25879
commit 7868c4129c
1 changed files with 19 additions and 0 deletions

19
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,19 @@
stages:
- build
Windows Portable:
stage: build
image: syping/qt5-static-mingw:5.12.4
variables:
QT_SELECT: "qt5-x86_64-w64-mingw32"
script:
- mkdir -p build
- cd build
- qmake-static ../luaengineapp.pro
- make -j4
- cp -Rf release/luaengineapp.exe ../
- cd ..
artifacts:
name: "luaengineapp-$CI_COMMIT_REF_NAME-${CI_COMMIT_SHA:0:8}"
paths:
- "luaengineapp.exe"