Message ID | 20250410114628.2060072-7-andrew.cooper3@citrix.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Cleanup and Linux ARM64 support | expand |
On Thu, Apr 10, 2025 at 12:46:28PM +0100, Andrew Cooper wrote: > For ARM64, the tests in Xen currently use 6.6.74, but 6.6.86 works so update > to the latest. > > For x86, stay at 6.6.56. There's a PVH regression upstream in need of fixing. > > Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Acked-by: Anthony PERARD <anthony.perard@vates.tech> Thanks,
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6faa85d8dd7c..670f9621e26d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,6 +30,24 @@ stages: variables: CONTAINER: alpine:x86_64-build +# +# ARM64 artifacts +# +linux-6.6.86-arm64: + extends: .arm64-artifacts + script: ./scripts/build-linux.sh + variables: + LINUX_VERSION: 6.6.86 + +# +# x86_64 artifacts +# +linux-6.6.56-x86_64: + extends: .x86_64-artifacts + script: ./scripts/build-linux.sh + variables: + LINUX_VERSION: 6.6.56 + # # The jobs below here are legacy and being phased out. #
For ARM64, the tests in Xen currently use 6.6.74, but 6.6.86 works so update to the latest. For x86, stay at 6.6.56. There's a PVH regression upstream in need of fixing. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> --- CC: Roger Pau Monné <roger.pau@citrix.com> CC: Stefano Stabellini <sstabellini@kernel.org> CC: Michal Orzel <michal.orzel@amd.com> CC: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> CC: Anthony PERARD <anthony.perard@vates.tech> v2: * Move x86 back to 6.6.56 until the PVH regression is fixed. --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)