From fb21c917ac6df67ba128d07ea68fbfc93ec33db6 Mon Sep 17 00:00:00 2001 From: SChernykh <15806605+SChernykh@users.noreply.github.com> Date: Thu, 24 Jul 2025 16:07:11 +0200 Subject: [PATCH] Compiler test scripts: don't compress the output --- scripts/compiler_tests/clang/build.sh | 2 +- scripts/compiler_tests/clang/test.sh | 2 -- scripts/compiler_tests/gcc/build.sh | 2 +- scripts/compiler_tests/gcc/test.sh | 2 -- 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/scripts/compiler_tests/clang/build.sh b/scripts/compiler_tests/clang/build.sh index 8a23227..ca872bd 100755 --- a/scripts/compiler_tests/clang/build.sh +++ b/scripts/compiler_tests/clang/build.sh @@ -7,7 +7,7 @@ cd "$(dirname "$0")" docker build --build-arg P2POOL_VERSION=$1 --build-arg CLANG_VERSION=$2 -t p2pool_compiler_test_clang_$1_$2 . docker create --name p2pool_compiler_test_clang_$1_$2_container p2pool_compiler_test_clang_$1_$2:latest -docker cp p2pool_compiler_test_clang_$1_$2_container:/p2pool/logs.tar.gz clang_$2_logs.tar.gz +docker cp p2pool_compiler_test_clang_$1_$2_container:/p2pool/output.log clang_$2_output.log docker rm p2pool_compiler_test_clang_$1_$2_container docker image rm -f p2pool_compiler_test_clang_$1_$2 diff --git a/scripts/compiler_tests/clang/test.sh b/scripts/compiler_tests/clang/test.sh index d3de0a2..7dbb015 100755 --- a/scripts/compiler_tests/clang/test.sh +++ b/scripts/compiler_tests/clang/test.sh @@ -8,5 +8,3 @@ git submodule update --recursive --jobs $(nproc) export COMPILER="-DCMAKE_C_COMPILER=clang-$2 -DCMAKE_CXX_COMPILER=clang++-$2" ./test2.sh - -tar -czvf /p2pool/logs.tar.gz /p2pool/output.log diff --git a/scripts/compiler_tests/gcc/build.sh b/scripts/compiler_tests/gcc/build.sh index 174422a..ed71008 100755 --- a/scripts/compiler_tests/gcc/build.sh +++ b/scripts/compiler_tests/gcc/build.sh @@ -7,7 +7,7 @@ cd "$(dirname "$0")" docker build --build-arg P2POOL_VERSION=$1 --build-arg GCC_VERSION=$2 -t p2pool_compiler_test_gcc_$1_$2 . docker create --name p2pool_compiler_test_gcc_$1_$2_container p2pool_compiler_test_gcc_$1_$2:latest -docker cp p2pool_compiler_test_gcc_$1_$2_container:/p2pool/logs.tar.gz gcc_$2_logs.tar.gz +docker cp p2pool_compiler_test_gcc_$1_$2_container:/p2pool/output.log gcc_$2_output.log docker rm p2pool_compiler_test_gcc_$1_$2_container docker image rm -f p2pool_compiler_test_gcc_$1_$2 diff --git a/scripts/compiler_tests/gcc/test.sh b/scripts/compiler_tests/gcc/test.sh index 59ada51..98424a9 100755 --- a/scripts/compiler_tests/gcc/test.sh +++ b/scripts/compiler_tests/gcc/test.sh @@ -8,5 +8,3 @@ git submodule update --recursive --jobs $(nproc) export COMPILER="-DCMAKE_C_COMPILER=/usr/local/gcc-$2/bin/gcc -DCMAKE_CXX_COMPILER=/usr/local/gcc-$2/bin/g++ -DCMAKE_AR=/usr/local/gcc-$2/bin/gcc-ar -DCMAKE_RANLIB=/usr/local/gcc-$2/bin/gcc-ranlib" ./test2.sh - -tar -czvf /p2pool/logs.tar.gz /p2pool/output.log