ee381b7fe1
After adding some missing packages, it's possible to check 32-bit builds and tests with the fedora-i386-cross container in the gitlab-CI, too. Unfortunately, the code in subprojects/ ignores the --extra-cflags (on purpose), so the vhost-user part has to be disabled for this. While we're at it, update the container to Fedora 31. Unfortunately the gcc from the later versions emits some very dubious format-truncation warnings, so Fedora 32 and 33 are currently unsuitable for this job. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Message-Id: <20201215083451.92322-1-thuth@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
163 lines
3.8 KiB
YAML
163 lines
3.8 KiB
YAML
.cross_system_build_job:
|
|
stage: build
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest
|
|
timeout: 80m
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH
|
|
../configure --enable-werror $QEMU_CONFIGURE_OPTS --disable-user
|
|
--target-list-exclude="arm-softmmu cris-softmmu i386-softmmu
|
|
microblaze-softmmu mips-softmmu mipsel-softmmu mips64-softmmu
|
|
ppc-softmmu sh4-softmmu xtensa-softmmu"
|
|
- make -j$(expr $(nproc) + 1) all check-build $MAKE_CHECK_ARGS
|
|
|
|
# Job to cross-build specific accelerators.
|
|
#
|
|
# Set the $ACCEL variable to select the specific accelerator (default to
|
|
# KVM), and set extra options (such disabling other accelerators) via the
|
|
# $ACCEL_CONFIGURE_OPTS variable.
|
|
.cross_accel_build_job:
|
|
stage: build
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest
|
|
timeout: 30m
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH
|
|
../configure --enable-werror $QEMU_CONFIGURE_OPTS --disable-tools
|
|
--enable-${ACCEL:-kvm} $ACCEL_CONFIGURE_OPTS
|
|
- make -j$(expr $(nproc) + 1) all check-build
|
|
|
|
.cross_user_build_job:
|
|
stage: build
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH
|
|
../configure --enable-werror $QEMU_CONFIGURE_OPTS --disable-system
|
|
- make -j$(expr $(nproc) + 1) all check-build $MAKE_CHECK_ARGS
|
|
|
|
cross-armel-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-armel-cross
|
|
|
|
cross-armel-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-armel-cross
|
|
|
|
cross-armhf-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-armhf-cross
|
|
|
|
cross-armhf-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-armhf-cross
|
|
|
|
cross-arm64-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-arm64-cross
|
|
|
|
cross-arm64-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-arm64-cross
|
|
|
|
cross-i386-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: fedora-i386-cross
|
|
MAKE_CHECK_ARGS: check-qtest
|
|
|
|
cross-i386-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: fedora-i386-cross
|
|
MAKE_CHECK_ARGS: check
|
|
|
|
cross-mips-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-mips-cross
|
|
|
|
cross-mips-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-mips-cross
|
|
|
|
cross-mipsel-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-mipsel-cross
|
|
|
|
cross-mipsel-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-mipsel-cross
|
|
|
|
cross-mips64el-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-mips64el-cross
|
|
|
|
cross-mips64el-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-mips64el-cross
|
|
|
|
cross-ppc64el-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-ppc64el-cross
|
|
|
|
cross-ppc64el-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-ppc64el-cross
|
|
|
|
cross-s390x-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: debian-s390x-cross
|
|
|
|
cross-s390x-user:
|
|
extends: .cross_user_build_job
|
|
variables:
|
|
IMAGE: debian-s390x-cross
|
|
|
|
cross-s390x-kvm-only:
|
|
extends: .cross_accel_build_job
|
|
variables:
|
|
IMAGE: debian-s390x-cross
|
|
ACCEL_CONFIGURE_OPTS: --disable-tcg
|
|
|
|
cross-win32-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: fedora-win32-cross
|
|
|
|
cross-win64-system:
|
|
extends: .cross_system_build_job
|
|
variables:
|
|
IMAGE: fedora-win64-cross
|
|
|
|
cross-amd64-xen-only:
|
|
extends: .cross_accel_build_job
|
|
variables:
|
|
IMAGE: debian-amd64-cross
|
|
ACCEL: xen
|
|
ACCEL_CONFIGURE_OPTS: --disable-tcg --disable-kvm
|
|
|
|
cross-arm64-xen-only:
|
|
extends: .cross_accel_build_job
|
|
variables:
|
|
IMAGE: debian-arm64-cross
|
|
ACCEL: xen
|
|
ACCEL_CONFIGURE_OPTS: --disable-tcg --disable-kvm
|