mirror of
https://gitlab.com/Syping/luaengineapp.git
synced 2024-12-22 11:55:29 +01:00
GitLab CI
This commit is contained in:
parent
92e9d25879
commit
7868c4129c
1 changed files with 19 additions and 0 deletions
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal 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"
|
Loading…
Reference in a new issue