browserocto/.gitlab-ci.yml

23 lines
645 B
YAML
Raw Normal View History

2023-02-12 01:20:16 +01:00
image: openjdk:18-jdk-bullseye
before_script:
- apt --quiet update --yes
2023-03-02 16:54:42 +01:00
- apt --quiet install --yes wget tar unzip perl p7zip-full imagemagick pngquant
2023-02-12 01:20:16 +01:00
BleedingEdge:
interruptible: true
stage: build
script: |
2023-03-02 16:54:42 +01:00
StartDir="$(pwd)"
2023-02-15 00:13:36 +01:00
mkdir -p ../AndroidSdk
cd ../AndroidSdk
2023-02-12 01:20:16 +01:00
wget -O BuildTools.zip https://dl.google.com/android/repository/build-tools_r30.0.3-linux.zip
wget -O Platform.zip https://dl.google.com/android/repository/platform-30_r03.zip
yes A | unzip BuildTools.zip || true
yes A | unzip Platform.zip || true
2023-02-15 00:13:36 +01:00
cd "$StartDir"
sh ./tools/Build.sh
2023-02-12 01:20:16 +01:00
artifacts:
paths:
2023-02-15 00:13:36 +01:00
- build/app.apk