From 7868c4129c6287527cb72634587fad22009c777a Mon Sep 17 00:00:00 2001 From: Syping Date: Tue, 24 Sep 2019 17:25:39 +0200 Subject: [PATCH] GitLab CI --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cc4d863 --- /dev/null +++ b/.gitlab-ci.yml @@ -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"