You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

74 lines
1.4 KiB

image: termux/package-builder:latest
variables:
ANDROID_HOME: "/home/builder/lib/android-sdk"
NDK: "/home/builder/lib/android-ndk"
stages:
- build
- deploy
## Use custom install directory (/data) so we will be
## able to cache it.
before_script:
- mkdir -p ./build-data/data/com.termux/files/usr
- mount --bind ./build-data /data
- cp -a /home/builder/.android $HOME/.android
- chown -R $(id -u):$(id -g) $HOME/.android
## Common configuration for all build jobs.
.job_template: &build_job
stage: build
script:
- bash ./scripts/ci/gitlab.sh $TERMUX_ARCH
retry:
max: 2
when:
- script_failure
- runner_system_failure
- unknown_failure
artifacts:
when: always
expire_in: 3 week
paths:
- deb-packages
## Building packages for AArch64.
build-aarch64:
<<: *build_job
variables:
TERMUX_ARCH: aarch64
cache:
key: aarch64-data
paths:
- build-data
## Building packages for ARM.
build-arm:
<<: *build_job
variables:
TERMUX_ARCH: arm
cache:
key: arm-data
paths:
- build-data
## Building packages for i686.
build-i686:
<<: *build_job
variables:
TERMUX_ARCH: i686
cache:
key: i686-data
paths:
- build-data
## Building packages for x86_64.
build-x86_64:
<<: *build_job
variables:
TERMUX_ARCH: x86_64
cache:
key: x86_64-data
paths:
- build-data