36 lines
729 B
YAML
36 lines
729 B
YAML
kind: pipeline
|
|
type: docker
|
|
|
|
environment:
|
|
BUILD_TYPE: "DEV"
|
|
|
|
steps:
|
|
- name: Windows Installer
|
|
image: sypingauto/gta5view-build:1.8-shared
|
|
environment:
|
|
BUILD_SCRIPT: "wininstall_build.sh"
|
|
QT_SELECT: "qt5-x86_64-w64-mingw32"
|
|
TCA_PASS:
|
|
from_secret: tca_pass
|
|
commands:
|
|
- .drone/drone.sh
|
|
volumes:
|
|
- name: gta5view
|
|
path: /srv/gta5view
|
|
- name: Windows Portable
|
|
image: sypingauto/gta5view-build:1.8-static
|
|
environment:
|
|
BUILD_SCRIPT: "windows_build.sh"
|
|
QT_SELECT: "qt5-x86_64-w64-mingw32"
|
|
TCA_PASS:
|
|
from_secret: tca_pass
|
|
commands:
|
|
- .drone/drone.sh
|
|
volumes:
|
|
- name: gta5view
|
|
path: /srv/gta5view
|
|
|
|
volumes:
|
|
- name: gta5view
|
|
host:
|
|
path: /srv/gta5view
|