mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-20 09:42:29 +01:00
dfe9e60c46
this also is for all tests now Fix macos ScreenPlay.app icon
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
standalone_windows:
|
|
stage: build
|
|
extends:
|
|
- .base_windows_build
|
|
script:
|
|
- 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:
|
|
- python3 Tools/build.py --type=release --use-aqt --installer --deploy-version
|
|
|
|
steam_windows:
|
|
stage: build_steam
|
|
extends:
|
|
- .base_windows_build
|
|
script:
|
|
- python Tools/build.py --type=release -steam --use-aqt --deploy-version
|
|
|
|
steam_osx:
|
|
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:
|
|
stage: build_steam
|
|
extends:
|
|
- .base_linux_build
|
|
script:
|
|
- python3 Tools/build.py --type=release -steam --use-aqt --deploy-version
|