From 6d9ab710159ffda0f76d648727a1e50649b2f907 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 15 Aug 2025 14:50:36 +0200 Subject: [PATCH] cross/.gitlab-ci.yml: fix building 3 pkgs The hello-world, iskey, pbsplash packages didn't actually get built in this test as --force was missing and the versions don't change when upgrading gcc. The last and most important one for building gcc-x86_64 with gcc-aarch64 did work though. Part-of: --- cross/.gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cross/.gitlab-ci.yml b/cross/.gitlab-ci.yml index f4912ca5f..8af472e70 100644 --- a/cross/.gitlab-ci.yml +++ b/cross/.gitlab-ci.yml @@ -5,9 +5,9 @@ cross-gcc-tests: - sh ./install_pmbootstrap.sh script: - su pmos -c "pmbootstrap --details-to-stdout build gcc-aarch64" - - su pmos -c "pmbootstrap --details-to-stdout build --arch=aarch64 hello-world" - - su pmos -c "pmbootstrap --details-to-stdout build --arch=aarch64 iskey" - - su pmos -c "pmbootstrap --details-to-stdout build --arch=aarch64 pbsplash" + - su pmos -c "pmbootstrap --details-to-stdout build --arch=aarch64 hello-world --force" + - su pmos -c "pmbootstrap --details-to-stdout build --arch=aarch64 iskey --force" + - su pmos -c "pmbootstrap --details-to-stdout build --arch=aarch64 pbsplash --force" - su pmos -c "pmbootstrap --details-to-stdout build --arch=aarch64 gcc-x86_64" rules: - if: $CI_PIPELINE_SOURCE == "merge_request_event"