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: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/6909>
This commit is contained in:
Oliver Smith 2025-08-15 14:50:36 +02:00 committed by The Friendly Merge Bot
parent 689d67be2e
commit 6d9ab71015
No known key found for this signature in database

View file

@ -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"