84 lines
1.3 KiB
YAML
84 lines
1.3 KiB
YAML
stages:
|
|
- prepare
|
|
- build
|
|
- deploy
|
|
|
|
workflow:
|
|
rules:
|
|
- if: $CI_EXTERNAL_PULL_REQUEST_IID
|
|
- if: $CI_COMMIT_TAG
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
CHROME_BIN: "chromium"
|
|
|
|
simpleCheck:
|
|
stage: prepare
|
|
script: echo PREPARE
|
|
tags:
|
|
- linuxX64
|
|
# ---- Linux builds ----
|
|
|
|
buildLinux:
|
|
stage: build
|
|
when: manual
|
|
allow_failure: false
|
|
script:
|
|
- ./linuxBuild.sh
|
|
tags:
|
|
- linuxX64
|
|
linuxPublishToSnapshot:
|
|
stage: deploy
|
|
script:
|
|
- ./linuxBuild.sh
|
|
- ./linuxBuildAndPublish.sh
|
|
only:
|
|
- main
|
|
tags:
|
|
- linuxX64
|
|
|
|
|
|
# ---- Mac builds ----
|
|
|
|
buildMac:
|
|
stage: build
|
|
when: manual
|
|
allow_failure: false
|
|
script:
|
|
- ./macBuild.sh
|
|
tags:
|
|
- macos
|
|
|
|
macPublishToSnapshot:
|
|
stage: deploy
|
|
script:
|
|
- ./macBuild.sh
|
|
- ./macBuildAndPublishSnapshot-bindings.sh
|
|
only:
|
|
- main
|
|
tags:
|
|
- macos
|
|
|
|
# ---- Windows builds ----
|
|
|
|
buildWindows:
|
|
stage: build
|
|
when: manual
|
|
allow_failure: false
|
|
script:
|
|
- $env:CHERE_INVOKING = 'yes'
|
|
- C:\msys64\usr\bin\bash -lc "./windowsBuild-delegated.sh"
|
|
tags:
|
|
- windowsX64
|
|
|
|
windowsPublishToSnapshot:
|
|
stage: deploy
|
|
script:
|
|
- $env:CHERE_INVOKING = 'yes'
|
|
- C:\msys64\usr\bin\bash -lc "./windowsBuildAndPublish-delegated.sh"
|
|
only:
|
|
- main
|
|
tags:
|
|
- windowsX64
|