113 lines
3.5 KiB
YAML
113 lines
3.5 KiB
YAML
variables:
|
|
IMAGE_NAME: funkwhale/funkwhale
|
|
IMAGE: $IMAGE_NAME:$CI_COMMIT_REF_NAME
|
|
IMAGE_LATEST: $IMAGE_NAME:latest
|
|
ALL_IN_ONE_IMAGE_NAME: funkwhale/all-in-one
|
|
ALL_IN_ONE_IMAGE: $ALL_IN_ONE_IMAGE_NAME:$CI_COMMIT_REF_NAME
|
|
ALL_IN_ONE_IMAGE_LATEST: $ALL_IN_ONE_IMAGE_NAME:latest
|
|
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.pip"
|
|
CARGO_HOME: "$CI_PROJECT_DIR/.cargo"
|
|
PYTHONDONTWRITEBYTECODE: "true"
|
|
REVIEW_DOMAIN: preview.funkwhale.audio
|
|
REVIEW_INSTANCE_URL: https://funkwhale.juniorjpdj.pl
|
|
DOCKER_HOST: tcp://docker:2375/
|
|
DOCKER_DRIVER: overlay2
|
|
DOCKER_TLS_CERTDIR: ""
|
|
DOCKER_BUILD_PLATFORMS: linux/amd64,linux/arm64,linux/arm/v7
|
|
|
|
workflow:
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
|
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS
|
|
when: never
|
|
- if: $CI_COMMIT_BRANCH
|
|
|
|
stages:
|
|
- deploy
|
|
- lint
|
|
- test
|
|
- deps_build
|
|
- build
|
|
- publish
|
|
|
|
.build_dep_wheels:
|
|
cache:
|
|
- key: dep-cargo
|
|
paths:
|
|
- .cargo/registry/index
|
|
- .cargo/registry/cache
|
|
- .cargo/git/db
|
|
- key: dep-pip-$DOCKER_ARCH
|
|
paths:
|
|
- .pip
|
|
stage: deps_build
|
|
tags: [docker, $DOCKER_ARCH]
|
|
image: ${DOCKER_ARCH}/alpine:3.17
|
|
before_script:
|
|
- >
|
|
apk add
|
|
alpine-sdk
|
|
python3-dev
|
|
postgresql-dev
|
|
libffi-dev
|
|
zlib-dev
|
|
jpeg-dev
|
|
openldap-dev
|
|
openssl-dev
|
|
cargo
|
|
libxml2-dev
|
|
libxslt-dev
|
|
poetry
|
|
py3-pip
|
|
patchelf
|
|
- cd api ; poetry export --without-hashes > ../requirements.txt ; cd ..
|
|
- python -m venv venv
|
|
- venv/bin/pip install --upgrade pip wheel auditwheel
|
|
- venv/bin/pip debug --verbose
|
|
script:
|
|
# build basic wheels
|
|
- venv/bin/pip wheel --check-build-dependencies -w wheelhouse -r requirements.txt
|
|
# remove universal wheels (those are probably downloaded from pypi or already uploaded)
|
|
- rm -f wheelhouse/*-none-any.whl wheelhouse/*-musllinux_*.whl
|
|
- ls -l wheelhouse
|
|
# correction of wheel tagging needed to workaround maturin and other 3-rd party packagers problems on multi-arch envs..
|
|
# https://github.com/PyO3/maturin/issues/1289 but appears on other arches and packagers too
|
|
- |
|
|
for wheel in wheelhouse/* ; do
|
|
echo "Correcting tags for $wheel"
|
|
corrected_tag="$(venv/bin/python3 -c "import auditwheel.wheel_abi; print(auditwheel.wheel_abi.analyze_wheel_abi('$wheel').overall_tag)" || true)"
|
|
echo "New tag: $corrected_tag"
|
|
[[ "$wheel" = "*$corrected_tag*" ]] && { echo 'Tag already correct or correct tag is unknown - skipping.' ; continue ; }
|
|
|
|
venv/bin/wheel unpack -d wheeltmp "$wheel"
|
|
sed -ri 's/^(Tag: .*)-.*?$/\1-'"$corrected_tag"'/g' wheeltmp/*/*.dist-info/WHEEL
|
|
rm -f "$wheel"
|
|
venv/bin/wheel pack -d wheelhouse wheeltmp/*
|
|
rm -rf wheeltmp
|
|
done
|
|
# prepare musllinux universal wheels
|
|
- |
|
|
for wheel in wheelhouse/* ; do
|
|
venv/bin/auditwheel repair --strip "$wheel" || true
|
|
done
|
|
# remove basic wheels as we have universal wheels now
|
|
- rm -f wheelhouse/*-linux*.whl wheelhouse/*.linux*.whl
|
|
- ls -l wheelhouse
|
|
## populate cache with universal wheels for next runs
|
|
#- pip install wheelhouse/*.whl
|
|
artifacts:
|
|
paths:
|
|
- wheelhouse
|
|
|
|
build_dep_wheels:
|
|
extends: .build_dep_wheels
|
|
parallel:
|
|
matrix:
|
|
- DOCKER_ARCH: [amd64, i386, arm64v8, arm32v7]
|
|
|
|
build_dep_wheels_riscv64:
|
|
extends: .build_dep_wheels
|
|
variables:
|
|
DOCKER_ARCH: riscv64
|
|
image: ${DOCKER_ARCH}/alpine:edge
|