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-30 15:38:19 +01:00
|
|
|
- test
|
2020-10-30 16:40:16 +01:00
|
|
|
- benchmark
|
2018-11-08 21:08:33 +01:00
|
|
|
|
2020-10-29 18:19:22 +01:00
|
|
|
check:
|
|
|
|
stage: check
|
2021-01-23 11:36:14 +01:00
|
|
|
allow_failure: true
|
2020-10-29 18:19:22 +01:00
|
|
|
tags:
|
|
|
|
- vs2019
|
|
|
|
- windows10
|
|
|
|
script:
|
|
|
|
- cd Tools
|
|
|
|
- pip install cmakelang
|
2021-07-25 15:26:48 +02:00
|
|
|
- python clang_format.py
|
|
|
|
- python cmake_format.py
|
2020-10-29 18:19:22 +01:00
|
|
|
|
|
|
|
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
|
2021-05-16 13:12:24 +02:00
|
|
|
- python setup.py
|
2020-10-29 18:19:22 +01:00
|
|
|
- python build.py -t debug
|
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2020-08-10 17:42:49 +02:00
|
|
|
paths:
|
2020-10-30 16:53:13 +01:00
|
|
|
- build-x64-windows-debug/bin/
|
2020-10-29 18:19:22 +01:00
|
|
|
|
|
|
|
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
|
2021-05-16 13:12:24 +02:00
|
|
|
- python setup.py
|
2020-10-29 18:19:22 +01:00
|
|
|
- python build.py -t release
|
2018-11-08 21:08:33 +01:00
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2018-11-08 21:08:33 +01:00
|
|
|
paths:
|
2020-10-30 16:44:20 +01:00
|
|
|
- build-x64-windows-release/bin/
|
2020-10-29 18:19:22 +01:00
|
|
|
|
2020-10-31 19:30:27 +01:00
|
|
|
build:osx_debug:
|
|
|
|
stage: build
|
|
|
|
allow_failure: true
|
|
|
|
tags:
|
|
|
|
- osx
|
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
script:
|
|
|
|
- cd Tools
|
2021-05-16 13:12:24 +02:00
|
|
|
- python3 setup.py
|
2020-10-31 19:59:46 +01:00
|
|
|
- python3 build.py -t debug
|
2020-10-31 19:30:27 +01:00
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2020-10-31 19:30:27 +01:00
|
|
|
paths:
|
|
|
|
- build-x64-osx-debug/bin/
|
|
|
|
|
2020-10-31 19:32:15 +01:00
|
|
|
build:osx_release:
|
2020-10-31 19:30:27 +01:00
|
|
|
stage: build
|
|
|
|
allow_failure: true
|
|
|
|
tags:
|
|
|
|
- osx
|
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
script:
|
|
|
|
- cd Tools
|
2021-05-16 13:12:24 +02:00
|
|
|
- python3 setup.py
|
2020-10-31 19:59:46 +01:00
|
|
|
- python3 build.py -t release
|
2020-10-31 19:30:27 +01:00
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2020-10-31 19:30:27 +01:00
|
|
|
paths:
|
|
|
|
- build-x64-osx-release/bin/
|
|
|
|
|
2020-10-29 18:19:22 +01:00
|
|
|
build:linux_debug:
|
|
|
|
stage: build
|
2020-10-29 21:38:08 +01:00
|
|
|
allow_failure: true
|
2021-05-13 12:22:46 +02:00
|
|
|
image:
|
2021-07-25 15:23:31 +02:00
|
|
|
name: ubuntu:20.04
|
2020-10-29 18:19:22 +01:00
|
|
|
tags:
|
2021-05-13 12:22:46 +02:00
|
|
|
- gitlab-org-docker
|
2020-10-29 18:19:22 +01:00
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
script:
|
2021-07-25 15:23:31 +02:00
|
|
|
- apt update -y
|
|
|
|
# Otherwise libglib2 needs interaction
|
|
|
|
- export DEBIAN_FRONTEND=noninteractive
|
|
|
|
- apt install apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip -y
|
2020-10-29 21:28:01 +01:00
|
|
|
- wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
|
2021-07-25 15:26:48 +02:00
|
|
|
- apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic-rc main' -y
|
|
|
|
- apt update -y
|
|
|
|
- apt install build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
2021-07-25 15:23:31 +02:00
|
|
|
- pip3 install aqtinstall
|
|
|
|
- mkdir Qt
|
|
|
|
- aqt install --outputdir Qt/ 5.15.2 linux desktop
|
2020-10-29 18:19:22 +01:00
|
|
|
- cd Tools
|
2021-07-25 15:23:31 +02:00
|
|
|
- wget https://github.com/QuasarApp/CQtDeployer/releases/download/1.5.2/CQtDeployer_1.5.2_OfflineInstaller_Linux64.run
|
2021-05-16 13:12:24 +02:00
|
|
|
- python setup.py
|
2020-10-29 18:19:22 +01:00
|
|
|
- python build.py -t debug
|
2021-07-25 15:26:48 +02:00
|
|
|
|
2020-10-29 18:19:22 +01:00
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2020-10-29 18:19:22 +01:00
|
|
|
paths:
|
|
|
|
- build-x64-linux-debug/bin/
|
|
|
|
|
|
|
|
build:linux_release:
|
|
|
|
stage: build
|
2020-10-29 21:38:08 +01:00
|
|
|
allow_failure: true
|
2021-05-13 12:22:46 +02:00
|
|
|
image:
|
2021-07-25 15:32:38 +02:00
|
|
|
name: ubuntu:20.04
|
2020-10-29 18:19:22 +01:00
|
|
|
tags:
|
2021-05-13 12:22:46 +02:00
|
|
|
- gitlab-org-docker
|
2020-10-29 18:19:22 +01:00
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
script:
|
2021-07-25 15:27:51 +02:00
|
|
|
- apt update -y
|
2021-07-25 15:26:48 +02:00
|
|
|
# Otherwise libglib2 needs interaction
|
|
|
|
- export DEBIAN_FRONTEND=noninteractive
|
|
|
|
- apt install apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip -y
|
2020-10-29 21:28:01 +01:00
|
|
|
- wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
|
2021-07-25 15:26:48 +02:00
|
|
|
- apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic-rc main' -y
|
|
|
|
- apt update -y
|
|
|
|
- apt install build-essential libgl1-mesa-dev lld ninja-build cmake -y
|
|
|
|
- pip3 install aqtinstall
|
|
|
|
- mkdir Qt
|
|
|
|
- aqt install --outputdir Qt/ 5.15.2 linux desktop
|
2021-05-13 12:22:46 +02:00
|
|
|
- cd Tools
|
2021-07-25 15:26:48 +02:00
|
|
|
- wget https://github.com/QuasarApp/CQtDeployer/releases/download/1.5.2/CQtDeployer_1.5.2_OfflineInstaller_Linux64.run
|
2021-05-16 13:12:24 +02:00
|
|
|
- python setup.py
|
2020-10-29 18:19:22 +01:00
|
|
|
- python build.py -t release
|
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2020-10-29 18:19:22 +01:00
|
|
|
paths:
|
|
|
|
- build-x64-linux-release/bin/
|
|
|
|
|
2020-10-30 15:37:00 +01:00
|
|
|
test:windows_debug:
|
|
|
|
stage: test
|
|
|
|
tags:
|
|
|
|
- windows10
|
|
|
|
- vs2019
|
|
|
|
dependencies:
|
|
|
|
- build:windows_debug
|
|
|
|
needs:
|
|
|
|
- build:windows_debug
|
|
|
|
script:
|
2020-10-30 16:53:13 +01:00
|
|
|
- ./build-x64-windows-debug/bin/ScreenPlay.exe --no-run=false --exit=true --reporters=junit --out=test-report-junit.xml
|
2020-10-30 15:37:00 +01:00
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2020-10-30 15:37:00 +01:00
|
|
|
when: always
|
|
|
|
reports:
|
|
|
|
junit: test-report-junit.xml
|
|
|
|
|
|
|
|
test:windows_release:
|
|
|
|
stage: test
|
|
|
|
tags:
|
|
|
|
- windows10
|
|
|
|
- vs2019
|
|
|
|
dependencies:
|
|
|
|
- build:windows_release
|
|
|
|
needs:
|
|
|
|
- build:windows_release
|
|
|
|
script:
|
2020-10-30 16:44:20 +01:00
|
|
|
- ./build-x64-windows-release/bin/ScreenPlay.exe --no-run=false --exit=true --reporters=junit --out=test-report-junit.xml
|
2020-10-30 15:37:00 +01:00
|
|
|
artifacts:
|
2021-05-13 12:22:46 +02:00
|
|
|
expire_in: "4 weeks"
|
2020-10-30 15:37:00 +01:00
|
|
|
when: always
|
|
|
|
reports:
|
2020-10-30 15:38:19 +01:00
|
|
|
junit: test-report-junit.xml
|
2020-10-30 16:40:16 +01:00
|
|
|
|
2019-12-13 13:28:26 +01:00
|
|
|
build_docs:
|
2021-05-13 12:22:46 +02:00
|
|
|
stage: .post
|
|
|
|
script:
|
|
|
|
- curl --request POST --form "token=$CI_JOB_TOKEN" --form ref=master https://gitlab.com/api/v4/projects/15800262/trigger/pipeline
|