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