add artifacts in .gitlab-ci.yml
This commit is contained in:
parent
f1cfbbf573
commit
efa88cc46e
1 changed files with 16 additions and 1 deletions
|
@ -1,9 +1,24 @@
|
||||||
image: syping/qt5-static-mingw:5.9.6
|
image: syping/qt5-static-mingw:5.9.6
|
||||||
|
|
||||||
job:
|
job 0:
|
||||||
|
variables:
|
||||||
|
BUILD_SCRIPT: "windows_build.sh"
|
||||||
|
QT_SELECT: "qt5-i686-w64-mingw32"
|
||||||
|
script:
|
||||||
|
- .gitlab/gitlab.sh
|
||||||
|
artifacts:
|
||||||
|
name: "$CI_COMMIT_REF_NAME-win32"
|
||||||
|
paths:
|
||||||
|
- assets/
|
||||||
|
|
||||||
|
job 1:
|
||||||
variables:
|
variables:
|
||||||
BUILD_SCRIPT: "windows_build.sh"
|
BUILD_SCRIPT: "windows_build.sh"
|
||||||
QT_SELECT: "qt5-x86_64-w64-mingw32"
|
QT_SELECT: "qt5-x86_64-w64-mingw32"
|
||||||
EXECUTABLE_ARCH: "_x64"
|
EXECUTABLE_ARCH: "_x64"
|
||||||
script:
|
script:
|
||||||
- .gitlab/gitlab.sh
|
- .gitlab/gitlab.sh
|
||||||
|
artifacts:
|
||||||
|
name: "$CI_COMMIT_REF_NAME-win64"
|
||||||
|
paths:
|
||||||
|
- assets/
|
||||||
|
|
Loading…
Reference in a new issue