2024-03-07 17:36:40 +01:00
|
|
|
stages:
|
2024-03-08 20:19:32 +01:00
|
|
|
- format
|
2024-03-08 20:26:40 +01:00
|
|
|
- build
|
2024-03-14 22:35:22 +01:00
|
|
|
#CLANG FORMAT - CHECKS CODE FOR FORMATTING ISSUES
|
2024-03-08 20:26:40 +01:00
|
|
|
clang-format:
|
|
|
|
stage: format
|
2024-03-14 22:35:22 +01:00
|
|
|
image: registry.gitlab.com/ddutchie/ci-docker:clangformat
|
|
|
|
#TODO: SET THIS TO FALSE!!!
|
2024-03-12 05:30:44 +01:00
|
|
|
allow_failure: true
|
2024-03-08 20:26:40 +01:00
|
|
|
script:
|
2024-03-08 23:44:03 +01:00
|
|
|
- git submodule update --init --depth 1 --recursive
|
2024-03-08 20:26:40 +01:00
|
|
|
- bash .ci/scripts/format/script.sh
|
2024-03-14 22:35:22 +01:00
|
|
|
#LINUX BUILD - BUILDS LINUX APPIMAGE
|
2024-03-07 17:36:40 +01:00
|
|
|
build-linux:
|
2024-03-07 01:05:52 +01:00
|
|
|
stage: build
|
2024-03-14 22:35:22 +01:00
|
|
|
image: registry.gitlab.com/ddutchie/ci-docker:linux-x64
|
2024-03-07 17:36:40 +01:00
|
|
|
resource_group: linux-ci
|
|
|
|
variables:
|
2024-03-14 22:35:22 +01:00
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
GIT_SUBMODULE_DEPTH: 1
|
|
|
|
RELEASE_NAME: mainline
|
2024-03-07 01:05:52 +01:00
|
|
|
script:
|
2024-03-07 17:36:40 +01:00
|
|
|
- bash .ci/scripts/linux/docker.sh
|
|
|
|
- bash .ci/scripts/linux/upload.sh
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- artifacts/*
|
2024-03-14 22:35:22 +01:00
|
|
|
#ANDROID BUILD - BUILDS APK
|
|
|
|
android:
|
|
|
|
stage: build
|
|
|
|
image: registry.gitlab.com/ddutchie/ci-docker:android-x64
|
|
|
|
script:
|
|
|
|
- apt-get update -y
|
|
|
|
- git submodule update --init --recursive
|
2024-03-15 10:13:02 +01:00
|
|
|
- cd externals/vcpkg && git fetch --unshallow && cd -
|
2024-03-14 22:35:22 +01:00
|
|
|
- export ANDROID_HOME="/usr/lib/android-sdk/"
|
|
|
|
- echo y | sdkmanager --sdk_root=/usr/lib/android-sdk --licenses
|
|
|
|
- bash ./.ci/scripts/android/build.sh
|
|
|
|
- bash ./.ci/scripts/android/upload.sh
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- artifacts/*
|