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.
36 lines
1.1 KiB
36 lines
1.1 KiB
container:
|
|
image: termux/package-builder:latest
|
|
cpu: 4
|
|
memory: 8
|
|
|
|
task:
|
|
name: Build
|
|
|
|
# 2 hours is a maximal timeout available for free use.
|
|
timeout_in: 120m
|
|
|
|
environment:
|
|
TERMUX_MAKE_PROCESSES: 4
|
|
matrix:
|
|
TERMUX_ARCH: aarch64
|
|
TERMUX_ARCH: arm
|
|
TERMUX_ARCH: i686
|
|
TERMUX_ARCH: x86_64
|
|
|
|
# Do not use built-in git client provided by Cirrus as may
|
|
# cause problems when determining changed files.
|
|
clone_script: |
|
|
if [[ -z "$CIRRUS_PR" ]]; then
|
|
git clone --recursive --branch="$CIRRUS_BRANCH" "https://x-access-token:${CIRRUS_REPO_CLONE_TOKEN}@github.com/${CIRRUS_REPO_FULL_NAME}.git" "$CIRRUS_WORKING_DIR"
|
|
git reset --hard "$CIRRUS_CHANGE_IN_REPO"
|
|
else
|
|
git clone --recursive "https://x-access-token:${CIRRUS_REPO_CLONE_TOKEN}@github.com/${CIRRUS_REPO_FULL_NAME}.git" "$CIRRUS_WORKING_DIR"
|
|
git fetch origin "pull/$CIRRUS_PR/head:pull/$CIRRUS_PR"
|
|
git reset --hard "$CIRRUS_CHANGE_IN_REPO"
|
|
fi
|
|
|
|
build_script: |
|
|
bash ./scripts/build/ci/cirrus-ci_dispatcher.sh
|
|
|
|
output_artifacts:
|
|
path: "./debs/*.deb"
|
|
|