suyu/.gitlab-ci.yml

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

25 lines
565 B
YAML
Raw Normal View History

2024-03-07 17:36:40 +01:00
stages:
2024-03-08 20:26:40 +01:00
- build
2024-03-16 22:25:56 +01:00
#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
2024-03-16 22:26:06 +01:00
- Testing