2023-08-11 17:00:24 +02:00
|
|
|
include:
|
|
|
|
- ".gitlab/ci/base_jobs.yml"
|
|
|
|
- ".gitlab/ci/build_jobs.yml"
|
2023-08-11 17:01:37 +02:00
|
|
|
- ".gitlab/ci/build_release_jobs.yml"
|
2023-08-11 17:00:24 +02:00
|
|
|
- ".gitlab/ci/check_jobs.yml"
|
|
|
|
|
2018-11-08 21:08:33 +01:00
|
|
|
stages:
|
2023-08-12 11:57:36 +02:00
|
|
|
# None Steam build for every commit
|
2022-08-14 12:02:55 +02:00
|
|
|
- build
|
2023-08-12 11:57:36 +02:00
|
|
|
# Steam build for every commit
|
|
|
|
- build_steam
|
2023-08-12 11:53:34 +02:00
|
|
|
# Git release tag builds
|
|
|
|
- release_build
|
2023-08-18 12:32:20 +02:00
|
|
|
# Gitlab releases at:
|
|
|
|
# https://gitlab.com/kelteseth/ScreenPlay/-/releases
|
|
|
|
- release
|
2023-08-12 11:53:34 +02:00
|
|
|
# Checks for source code formattings
|
2022-04-24 16:38:12 +02:00
|
|
|
- check
|
2018-11-08 21:08:33 +01:00
|
|
|
|
2022-08-14 12:02:55 +02:00
|
|
|
documentation:
|
2023-11-29 16:39:05 +01:00
|
|
|
dependencies: []
|
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
|