2018-11-08 21:08:33 +01:00
|
|
|
stages:
|
2020-10-29 18:19:22 +01:00
|
|
|
- check
|
2018-11-08 21:08:33 +01:00
|
|
|
- build
|
|
|
|
|
2020-10-29 18:19:22 +01:00
|
|
|
check:
|
|
|
|
stage: check
|
|
|
|
tags:
|
|
|
|
- vs2019
|
|
|
|
- windows10
|
|
|
|
script:
|
|
|
|
- cd Tools
|
|
|
|
- pip install cmakelang
|
|
|
|
- python format-cmake.py
|
|
|
|
- python format-cpp.py
|
|
|
|
|
|
|
|
build:windows_debug:
|
2018-11-08 21:08:33 +01:00
|
|
|
stage: build
|
|
|
|
tags:
|
2020-10-29 18:19:22 +01:00
|
|
|
- vs2019
|
|
|
|
- windows10
|
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
script:
|
|
|
|
- cd Tools
|
|
|
|
- python build.py -t debug
|
|
|
|
artifacts:
|
|
|
|
expire_in: '4 weeks'
|
2020-08-10 17:42:49 +02:00
|
|
|
paths:
|
2020-10-29 18:19:22 +01:00
|
|
|
- build-x64-window-debug/bin/
|
|
|
|
|
|
|
|
build:windows_release:
|
|
|
|
stage: build
|
|
|
|
tags:
|
|
|
|
- vs2019
|
|
|
|
- windows10
|
|
|
|
needs:
|
|
|
|
- check
|
2018-11-08 21:08:33 +01:00
|
|
|
script:
|
2020-10-29 18:19:22 +01:00
|
|
|
- cd Tools
|
|
|
|
- python build.py -t release
|
2018-11-08 21:08:33 +01:00
|
|
|
artifacts:
|
2020-10-29 18:19:22 +01:00
|
|
|
expire_in: '4 weeks'
|
2018-11-08 21:08:33 +01:00
|
|
|
paths:
|
2020-10-29 18:19:22 +01:00
|
|
|
- build-x64-window-release/bin/
|
|
|
|
|
|
|
|
build:linux_debug:
|
|
|
|
stage: build
|
|
|
|
tags:
|
|
|
|
- gcc
|
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
script:
|
|
|
|
- cd Tools
|
|
|
|
- python build.py -t debug
|
|
|
|
artifacts:
|
|
|
|
expire_in: '4 weeks'
|
|
|
|
paths:
|
|
|
|
- build-x64-linux-debug/bin/
|
|
|
|
|
|
|
|
build:linux_release:
|
|
|
|
stage: build
|
|
|
|
tags:
|
|
|
|
- gcc
|
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
script:
|
|
|
|
- cd Tools
|
|
|
|
- python build.py -t release
|
|
|
|
artifacts:
|
|
|
|
expire_in: '4 weeks'
|
|
|
|
paths:
|
|
|
|
- build-x64-linux-release/bin/
|
|
|
|
|
2019-12-13 13:28:26 +01:00
|
|
|
|
|
|
|
build_docs:
|
2019-12-13 13:29:56 +01:00
|
|
|
stage: .post
|
2019-12-13 13:28:26 +01:00
|
|
|
script:
|
2020-10-29 18:19:22 +01:00
|
|
|
- curl --request POST --form "token=$CI_JOB_TOKEN" --form ref=master https://gitlab.com/api/v4/projects/15800262/trigger/pipeline
|