Update .gitlab-ci.yml file
This commit is contained in:
parent
8755d2bad4
commit
7e17961259
1 changed files with 1 additions and 33 deletions
|
@ -1,38 +1,6 @@
|
||||||
stages:
|
stages:
|
||||||
- format
|
|
||||||
- build
|
- build
|
||||||
#CLANG FORMAT - CHECKS CODE FOR FORMATTING ISSUES
|
|
||||||
clang-format:
|
|
||||||
stage: format
|
|
||||||
image: suyuemu/cibuild:clangformat
|
|
||||||
#THIS HAS TO BE FALSE. IT KEEPS RESOURCES AVAILABLE - EG RUNNERS WONT TRY BUILDING IF CODEBASE IS WRONG
|
|
||||||
#MR's NEED TO BE CORRECTLY CLANG FORMATTED
|
|
||||||
allow_failure: false
|
|
||||||
script:
|
|
||||||
- git submodule update --init --depth 1 --recursive
|
|
||||||
- bash .ci/scripts/format/script.sh
|
|
||||||
tags:
|
|
||||||
# - Linux
|
|
||||||
# - Windows
|
|
||||||
- Parallelized
|
|
||||||
#LINUX BUILD - BUILDS LINUX APPIMAGE
|
|
||||||
build-linux:
|
|
||||||
stage: build
|
|
||||||
image: suyuemu/cibuild:linux-x64
|
|
||||||
resource_group: linux-ci
|
|
||||||
variables:
|
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
|
||||||
GIT_SUBMODULE_DEPTH: 1
|
|
||||||
RELEASE_NAME: mainline
|
|
||||||
script:
|
|
||||||
- bash .ci/scripts/linux/docker.sh
|
|
||||||
- bash .ci/scripts/linux/upload.sh
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- artifacts/*
|
|
||||||
tags:
|
|
||||||
- Linux
|
|
||||||
- Parallelized
|
|
||||||
#ANDROID BUILD - BUILDS APK
|
#ANDROID BUILD - BUILDS APK
|
||||||
android:
|
android:
|
||||||
stage: build
|
stage: build
|
||||||
|
|
Loading…
Reference in a new issue