1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00
ScreenPlay/.gitlab/ci/build_jobs.yml

51 lines
1.3 KiB
YAML
Raw Normal View History

standalone_windows:
stage: build
extends:
- .base_windows_build
script:
2023-08-12 12:18:39 +02:00
- python Tools/build.py --type=release --use-aqt --installer --deploy-version
standalone_osx:
stage: build
extends:
- .base_osx_build
script:
- python3 Tools/build.py --type=release --use-aqt --installer --deploy-version --sign_osx
- mv build-64-osx-universal-release/ScreenPlay-Installer-ScreenPlayComponent.dmg build-64-osx-universal-release/ScreenPlay-Installer.dmg
artifacts:
expire_in: "2 weeks"
paths:
- build-64-osx-universal-release/ScreenPlay-Installer.dmg
standalone_linux:
stage: build
extends:
- .base_linux_build
script:
2023-08-12 12:18:39 +02:00
- python3 Tools/build.py --type=release --use-aqt --installer --deploy-version
steam_windows:
2023-08-12 11:57:36 +02:00
stage: build_steam
extends:
- .base_windows_build
script:
- python Tools/build.py --type=release -steam --use-aqt --deploy-version
steam_osx:
2023-08-12 11:57:36 +02:00
stage: build_steam
extends:
- .base_osx_build
script:
- python3 Tools/build.py --type=release -steam --use-aqt --deploy-version --sign_osx
artifacts:
expire_in: "2 weeks"
paths:
- build-64-osx-universal-release/bin/ScreenPlay.app
steam_linux:
2023-08-12 11:57:36 +02:00
stage: build_steam
extends:
- .base_linux_build
script:
- python3 Tools/build.py --type=release -steam --use-aqt --deploy-version