mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
64bbf31fd8
Use fedora-toolbox:36 image as it is prepared to work with systemd and sudo Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
27 lines
1.1 KiB
YAML
27 lines
1.1 KiB
YAML
variables:
|
|
IPA_PLATFORM: fedora
|
|
# the Docker public image to build IPA packages (rpms)
|
|
DOCKER_BUILD_IMAGE: 'registry.fedoraproject.org/fedora-toolbox:36'
|
|
|
|
# the Dockerfile to build Docker image for running IPA tests
|
|
DOCKER_DOCKERFILE: ${{ format('Dockerfile.build.{0}', variables.IPA_PLATFORM) }}
|
|
|
|
# the template to autoconf the project
|
|
AUTOCONF_TEMPLATE: ${{ format('autoconf-{0}.yml', variables.IPA_PLATFORM) }}
|
|
|
|
# the template to install IPA's buildtime dependencies
|
|
PREPARE_BUILD_TEMPLATE: ${{ format('prepare-build-{0}.yml', variables.IPA_PLATFORM) }}
|
|
|
|
# the template to build IPA packages (rpms)
|
|
BUILD_TEMPLATE: ${{ format('build-{0}.yml', variables.IPA_PLATFORM) }}
|
|
PREPARE_TOX_TEMPLATE: ${{ format('prepare-tox-{0}.yml', variables.IPA_PLATFORM) }}
|
|
PREPARE_WEBUI_TEMPLATE: ${{ format('prepare-webui-{0}.yml', variables.IPA_PLATFORM) }}
|
|
|
|
# the template to install Lint dependencies
|
|
PREPARE_LINT_TEMPLATE: ${{ format('prepare-lint-{0}.yml', variables.IPA_PLATFORM) }}
|
|
|
|
# the template to build sphinx docs
|
|
BUILD_DOCS_TEMPLATE: ${{ format('build-docs-{0}.yml', variables.IPA_PLATFORM) }}
|
|
|
|
TOX_COMMAND: tox
|