From cbefe501cef9341096bbd45aeb107dbbd8f0b696 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 4 Jul 2024 20:29:35 +0100 Subject: [PATCH] Fix: OpenSUSE build failing (libqt5/libxslt dep error) (#7367) * Force CI * Attempt `sudo zypper update` * Attempt: sudo zypper install libxslt-devel -y * Fixed arg position * Try `--non-interactive` args * Try: --force-resolution * Try caching packages * Revert "Try caching packages" This reverts commit f2974465c452a5017f378dcfc8f1ce24dd102b82. --- config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.yaml b/config.yaml index c89e89b7a0..47fa44deaa 100644 --- a/config.yaml +++ b/config.yaml @@ -62,7 +62,7 @@ config: dependencies: command: sudo zypper refresh; \ sudo zypper --non-interactive remove busybox-which; \ - sudo zypper install -y \ + sudo zypper install -y --force-resolution \ cmake \ make \ gcc-c++ \