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 diff --git a/setup-services.sh b/setup-services.sh index 2a85303136..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 \ @@ -113,6 +118,7 @@ $SUDO zypper --non-interactive install \ lshw \ python-langtable-data \ tar \ + timezone \ xkeyboard-config-lang || exit 1 (