From d3798a1da7056514f760c00023e4eed64605a601 Mon Sep 17 00:00:00 2001 From: SChernykh <15806605+SChernykh@users.noreply.github.com> Date: Sun, 20 Jul 2025 07:25:25 +0200 Subject: [PATCH] Compiler test scripts: updated to use xz --- scripts/compiler_tests/clang/test2.sh | 2 +- scripts/compiler_tests/gcc/test2.sh | 2 +- scripts/compiler_tests/images/ubuntu/prepare.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/compiler_tests/clang/test2.sh b/scripts/compiler_tests/clang/test2.sh index 6889edd..6a9a901 100755 --- a/scripts/compiler_tests/clang/test2.sh +++ b/scripts/compiler_tests/clang/test2.sh @@ -16,6 +16,6 @@ cd ../tests mkdir build && cd build cmake .. -DCMAKE_BUILD_TYPE=Release $COMPILER 1>> /p2pool/output.log 2>&1 make -j$(nproc) p2pool_tests 1>> /p2pool/output.log 2>&1 -gunzip *.gz +unxz *.xz ./p2pool_tests 1>> /p2pool/output.log 2>&1 diff --git a/scripts/compiler_tests/gcc/test2.sh b/scripts/compiler_tests/gcc/test2.sh index 6889edd..6a9a901 100755 --- a/scripts/compiler_tests/gcc/test2.sh +++ b/scripts/compiler_tests/gcc/test2.sh @@ -16,6 +16,6 @@ cd ../tests mkdir build && cd build cmake .. -DCMAKE_BUILD_TYPE=Release $COMPILER 1>> /p2pool/output.log 2>&1 make -j$(nproc) p2pool_tests 1>> /p2pool/output.log 2>&1 -gunzip *.gz +unxz *.xz ./p2pool_tests 1>> /p2pool/output.log 2>&1 diff --git a/scripts/compiler_tests/images/ubuntu/prepare.sh b/scripts/compiler_tests/images/ubuntu/prepare.sh index 56f0ea2..aafa231 100755 --- a/scripts/compiler_tests/images/ubuntu/prepare.sh +++ b/scripts/compiler_tests/images/ubuntu/prepare.sh @@ -6,7 +6,7 @@ echo "Installing prerequisites" export DEBIAN_FRONTEND=noninteractive apt-get update && apt-get upgrade -yq --no-install-recommends -apt-get install -yq --no-install-recommends ca-certificates curl bzip2 flex lsb-release wget software-properties-common gnupg git gcc g++ cmake make libuv1-dev libzmq3-dev libsodium-dev libpgm-dev libnorm-dev libgss-dev libcurl4-openssl-dev libidn2-0-dev +apt-get install -yq --no-install-recommends ca-certificates curl bzip2 flex lsb-release wget software-properties-common gnupg xz-utils git gcc g++ cmake make libuv1-dev libzmq3-dev libsodium-dev libpgm-dev libnorm-dev libgss-dev libcurl4-openssl-dev libidn2-0-dev echo "Installing GCC 8.5.0"