suyu/.gitlab-ci.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.4 KiB
YAML
Raw Normal View History

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
#CLANG FORMAT - CHECKS CODE FOR FORMATTING ISSUES
2024-03-08 20:26:40 +01:00
clang-format:
stage: format
image: suyuemu/cibuild:clangformat
2024-03-15 15:48:12 +01:00
#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
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-15 20:55:53 +01:00
tags:
- Linux
- Windows
- Parallelized
#LINUX BUILD - BUILDS LINUX APPIMAGE
2024-03-07 17:36:40 +01:00
build-linux:
stage: build
image: suyuemu/cibuild:linux-x64
2024-03-07 17:36:40 +01:00
resource_group: linux-ci
variables:
GIT_SUBMODULE_STRATEGY: recursive
GIT_SUBMODULE_DEPTH: 1
RELEASE_NAME: mainline
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-15 20:55:53 +01:00
tags:
- Linux
- Parallelized
#ANDROID BUILD - BUILDS APK
android:
stage: build
image: suyuemu/cibuild:android-x64
script:
- apt-get update -y
- git submodule update --init --recursive
- cd externals/vcpkg
- git fetch --unshallow || true
- cd ../..
- 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/*
2024-03-15 20:55:53 +01:00
tags:
- Linux
- Parallelized