diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-06-06 19:53:35 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-07 08:35:24 -0700 |
commit | c81e2d5477c92b4a96c779bffbba3dddb23b91be (patch) | |
tree | 35f383accc9e5860080c50d7d7a89f56cd01d0f6 | |
parent | 007cd176e590c77e91d1531ec5acbe86b15b0f00 (diff) |
gitlab: Add cross-arm64-kvm-only
We are not currently running a --disable-tcg test for arm64,
like we are for mips, ppc and s390x. We have a job for the
native aarch64 runner, but it is not run by default and it
is not helpful for normal developer testing without access
to qemu's private runner.
Use --without-default-features to eliminate most tests.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | .gitlab-ci.d/crossbuilds.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.d/crossbuilds.yml b/.gitlab-ci.d/crossbuilds.yml index 61b8ac86ee..1e0e6c7f2c 100644 --- a/.gitlab-ci.d/crossbuilds.yml +++ b/.gitlab-ci.d/crossbuilds.yml @@ -29,6 +29,14 @@ cross-arm64-user: variables: IMAGE: debian-arm64-cross +cross-arm64-kvm-only: + extends: .cross_accel_build_job + needs: + job: arm64-debian-cross-container + variables: + IMAGE: debian-arm64-cross + EXTRA_CONFIGURE_OPTS: --disable-tcg --without-default-features + cross-i386-user: extends: - .cross_user_build_job |