2021-05-19 20:54:58 +02:00
|
|
|
.cross_system_build_job:
|
2022-05-27 17:36:01 +02:00
|
|
|
extends: .base_job_template
|
2021-05-19 20:54:58 +02:00
|
|
|
stage: build
|
2023-06-08 18:40:14 +02:00
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:$QEMU_CI_CONTAINER_TAG
|
2023-08-29 18:15:17 +02:00
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- ccache
|
|
|
|
key: "$CI_JOB_NAME"
|
|
|
|
when: always
|
2021-05-19 20:54:58 +02:00
|
|
|
timeout: 80m
|
|
|
|
script:
|
2023-08-29 18:15:17 +02:00
|
|
|
- export CCACHE_BASEDIR="$(pwd)"
|
|
|
|
- export CCACHE_DIR="$CCACHE_BASEDIR/ccache"
|
|
|
|
- export CCACHE_MAXSIZE="500M"
|
|
|
|
- export PATH="$CCACHE_WRAPPERSDIR:$PATH"
|
2021-05-19 20:54:58 +02:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2023-08-29 18:15:17 +02:00
|
|
|
- ccache --zero-stats
|
2023-02-07 21:14:47 +01:00
|
|
|
- ../configure --enable-werror --disable-docs --enable-fdt=system
|
|
|
|
--disable-user $QEMU_CONFIGURE_OPTS $EXTRA_CONFIGURE_OPTS
|
|
|
|
--target-list-exclude="arm-softmmu cris-softmmu
|
2021-05-19 20:54:58 +02:00
|
|
|
i386-softmmu microblaze-softmmu mips-softmmu mipsel-softmmu
|
2021-08-10 16:06:52 +02:00
|
|
|
mips64-softmmu ppc-softmmu riscv32-softmmu sh4-softmmu
|
2021-08-10 16:06:53 +02:00
|
|
|
sparc-softmmu xtensa-softmmu $CROSS_SKIP_TARGETS"
|
2021-05-19 20:54:58 +02:00
|
|
|
- make -j$(expr $(nproc) + 1) all check-build $MAKE_CHECK_ARGS
|
2021-06-23 11:11:35 +02:00
|
|
|
- if grep -q "EXESUF=.exe" config-host.mak;
|
|
|
|
then make installer;
|
2022-02-04 21:43:22 +01:00
|
|
|
version="$(git describe --match v[0-9]* 2>/dev/null || git rev-parse --short HEAD)";
|
2021-06-23 11:11:35 +02:00
|
|
|
mv -v qemu-setup*.exe qemu-setup-${version}.exe;
|
|
|
|
fi
|
2023-08-29 18:15:17 +02:00
|
|
|
- ccache --show-stats
|
2021-05-19 20:54:58 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
# $EXTRA_CONFIGURE_OPTS variable.
|
|
|
|
.cross_accel_build_job:
|
2022-05-27 17:36:01 +02:00
|
|
|
extends: .base_job_template
|
2021-05-19 20:54:58 +02:00
|
|
|
stage: build
|
2023-06-08 18:40:14 +02:00
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:$QEMU_CI_CONTAINER_TAG
|
2021-05-19 20:54:58 +02:00
|
|
|
timeout: 30m
|
2023-08-29 18:15:17 +02:00
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- ccache/
|
|
|
|
key: "$CI_JOB_NAME"
|
2021-05-19 20:54:58 +02:00
|
|
|
script:
|
2023-08-29 18:15:17 +02:00
|
|
|
- export CCACHE_BASEDIR="$(pwd)"
|
|
|
|
- export CCACHE_DIR="$CCACHE_BASEDIR/ccache"
|
|
|
|
- export CCACHE_MAXSIZE="500M"
|
|
|
|
- export PATH="$CCACHE_WRAPPERSDIR:$PATH"
|
2021-05-19 20:54:58 +02:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2022-11-03 18:30:43 +01:00
|
|
|
- ../configure --enable-werror --disable-docs $QEMU_CONFIGURE_OPTS
|
2021-05-19 20:54:58 +02:00
|
|
|
--disable-tools --enable-${ACCEL:-kvm} $EXTRA_CONFIGURE_OPTS
|
|
|
|
- make -j$(expr $(nproc) + 1) all check-build $MAKE_CHECK_ARGS
|
|
|
|
|
|
|
|
.cross_user_build_job:
|
2022-05-27 17:36:01 +02:00
|
|
|
extends: .base_job_template
|
2021-05-19 20:54:58 +02:00
|
|
|
stage: build
|
2023-06-08 18:40:14 +02:00
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:$QEMU_CI_CONTAINER_TAG
|
2023-08-29 18:15:17 +02:00
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- ccache/
|
|
|
|
key: "$CI_JOB_NAME"
|
2021-05-19 20:54:58 +02:00
|
|
|
script:
|
2023-08-29 18:15:17 +02:00
|
|
|
- export CCACHE_BASEDIR="$(pwd)"
|
|
|
|
- export CCACHE_DIR="$CCACHE_BASEDIR/ccache"
|
|
|
|
- export CCACHE_MAXSIZE="500M"
|
2021-05-19 20:54:58 +02:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2022-11-03 18:30:43 +01:00
|
|
|
- ../configure --enable-werror --disable-docs $QEMU_CONFIGURE_OPTS
|
2022-09-14 17:59:21 +02:00
|
|
|
--disable-system --target-list-exclude="aarch64_be-linux-user
|
|
|
|
alpha-linux-user cris-linux-user m68k-linux-user microblazeel-linux-user
|
|
|
|
nios2-linux-user or1k-linux-user ppc-linux-user sparc-linux-user
|
|
|
|
xtensa-linux-user $CROSS_SKIP_TARGETS"
|
2021-05-19 20:54:58 +02:00
|
|
|
- make -j$(expr $(nproc) + 1) all check-build $MAKE_CHECK_ARGS
|
2023-02-28 20:06:41 +01:00
|
|
|
|
|
|
|
# We can still run some tests on some of our cross build jobs. They can add this
|
|
|
|
# template to their extends to save the build logs and test results
|
|
|
|
.cross_test_artifacts:
|
|
|
|
artifacts:
|
|
|
|
name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
|
2023-06-30 20:03:46 +02:00
|
|
|
when: always
|
2023-02-28 20:06:41 +01:00
|
|
|
expire_in: 7 days
|
|
|
|
paths:
|
|
|
|
- build/meson-logs/testlog.txt
|
|
|
|
reports:
|
|
|
|
junit: build/meson-logs/testlog.junit.xml
|