From 1a7209236879edd55779bc506a0b81404962768b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Iv=C3=A1n=20L=C3=B3pez=20Gonz=C3=A1lez?= Date: Fri, 22 Dec 2023 14:04:40 +0000 Subject: [PATCH 1/3] Add dependency to setup script --- setup-services.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/setup-services.sh b/setup-services.sh index 2a85303136..15e911e2bc 100755 --- a/setup-services.sh +++ b/setup-services.sh @@ -113,6 +113,7 @@ $SUDO zypper --non-interactive install \ lshw \ python-langtable-data \ tar \ + timezone \ xkeyboard-config-lang || exit 1 ( From 474b71cfe4060199fd8479d48c54ad7691f2678d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Iv=C3=A1n=20L=C3=B3pez=20Gonz=C3=A1lez?= Date: Fri, 22 Dec 2023 15:20:35 +0000 Subject: [PATCH 2/3] Add dependency to CI tasks --- .github/workflows/ci-rust.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index 5555836ccb..6094cf6f84 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -68,7 +68,12 @@ jobs: run: zypper --non-interactive install rustup - name: Install required packages - run: zypper --non-interactive install python-langtable-data openssl-3 libopenssl-3-devel jq + run: zypper --non-interactive install + jq + libopenssl-3-devel + openssl-3 + python-langtable-data + timezone - name: Install Rust toolchains run: rustup toolchain install stable From 014b1b22057e86dbd895fd74302454dabe24b91e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Iv=C3=A1n=20L=C3=B3pez=20Gonz=C3=A1lez?= Date: Fri, 22 Dec 2023 15:28:41 +0000 Subject: [PATCH 3/3] Install fde-tools only for x86 --- setup-services.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup-services.sh b/setup-services.sh index 15e911e2bc..e9a4596a1f 100755 --- a/setup-services.sh +++ b/setup-services.sh @@ -69,7 +69,6 @@ $SUDO zypper --non-interactive --gpg-auto-import-keys install \ exfat-utils \ f2fs-tools \ fcoe-utils \ - fde-tools \ jfsutils \ libstorage-ng-lang \ lvm2 \ @@ -86,6 +85,12 @@ $SUDO zypper --non-interactive --gpg-auto-import-keys install \ udftools \ xfsprogs || exit 1 +# Install x86_64 packages +if [ $(uname -m) == "x86_64" ]; then + $SUDO zypper --non-interactive --gpg-auto-import-keys install \ + fde-tools +fi + # Install s390 packages if [ $(uname -m) == "s390x" ]; then $SUDO zypper --non-interactive --gpg-auto-import-keys install \