Compiler test scripts: added RandomX tests
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
FROM p2pool_compiler_tests_ubuntu
|
FROM p2pool_compiler_tests_ubuntu
|
||||||
ARG P2POOL_VERSION GCC_VERSION
|
ARG P2POOL_VERSION GCC_VERSION
|
||||||
ADD test.sh /p2pool/
|
ADD test.sh test2.sh /p2pool/
|
||||||
RUN /p2pool/test.sh ${P2POOL_VERSION} ${GCC_VERSION}
|
RUN /p2pool/test.sh ${P2POOL_VERSION} ${GCC_VERSION}
|
||||||
|
|||||||
@@ -5,20 +5,8 @@ git fetch --jobs=$(nproc)
|
|||||||
git checkout $1
|
git checkout $1
|
||||||
git submodule update --recursive --jobs $(nproc)
|
git submodule update --recursive --jobs $(nproc)
|
||||||
|
|
||||||
COMPILER="-DCMAKE_C_COMPILER=clang-$2 -DCMAKE_CXX_COMPILER=clang++-$2"
|
export COMPILER="-DCMAKE_C_COMPILER=clang-$2 -DCMAKE_CXX_COMPILER=clang++-$2"
|
||||||
|
|
||||||
cd /p2pool
|
./test2.sh
|
||||||
mkdir build && cd build
|
|
||||||
|
|
||||||
cmake .. -DCMAKE_BUILD_TYPE=Release $COMPILER 1>> /p2pool/output.log 2>&1
|
|
||||||
make -j$(nproc) p2pool 1>> /p2pool/output.log 2>&1
|
|
||||||
./p2pool --test 1>> /p2pool/output.log 2>&1
|
|
||||||
|
|
||||||
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
|
|
||||||
./p2pool_tests 1>> /p2pool/output.log 2>&1
|
|
||||||
|
|
||||||
tar -czvf /p2pool/logs.tar.gz /p2pool/output.log
|
tar -czvf /p2pool/logs.tar.gz /p2pool/output.log
|
||||||
|
|||||||
21
scripts/compiler_tests/clang/test2.sh
Executable file
21
scripts/compiler_tests/clang/test2.sh
Executable file
@@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd /p2pool
|
||||||
|
mkdir build && cd build
|
||||||
|
|
||||||
|
cmake .. -DCMAKE_BUILD_TYPE=Release $COMPILER 1>> /p2pool/output.log 2>&1
|
||||||
|
make -j$(nproc) p2pool 1>> /p2pool/output.log 2>&1
|
||||||
|
|
||||||
|
./p2pool --test 1>> /p2pool/output.log 2>&1
|
||||||
|
|
||||||
|
make -j$(nproc) randomx-tests 1>> /p2pool/output.log 2>&1
|
||||||
|
external/src/RandomX/randomx-tests 1>> /p2pool/output.log 2>&1
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
./p2pool_tests 1>> /p2pool/output.log 2>&1
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM p2pool_compiler_tests_ubuntu
|
FROM p2pool_compiler_tests_ubuntu
|
||||||
ARG P2POOL_VERSION GCC_VERSION
|
ARG P2POOL_VERSION GCC_VERSION
|
||||||
ADD test.sh /p2pool/
|
ADD test.sh test2.sh /p2pool/
|
||||||
RUN /p2pool/test.sh ${P2POOL_VERSION} ${GCC_VERSION}
|
RUN /p2pool/test.sh ${P2POOL_VERSION} ${GCC_VERSION}
|
||||||
|
|||||||
@@ -5,20 +5,8 @@ git fetch --jobs=$(nproc)
|
|||||||
git checkout $1
|
git checkout $1
|
||||||
git submodule update --recursive --jobs $(nproc)
|
git submodule update --recursive --jobs $(nproc)
|
||||||
|
|
||||||
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"
|
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"
|
||||||
|
|
||||||
cd /p2pool
|
./test2.sh
|
||||||
mkdir build && cd build
|
|
||||||
|
|
||||||
cmake .. -DCMAKE_BUILD_TYPE=Release $COMPILER 1>> /p2pool/output.log 2>&1
|
|
||||||
make -j$(nproc) p2pool 1>> /p2pool/output.log 2>&1
|
|
||||||
./p2pool --test 1>> /p2pool/output.log 2>&1
|
|
||||||
|
|
||||||
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
|
|
||||||
./p2pool_tests 1>> /p2pool/output.log 2>&1
|
|
||||||
|
|
||||||
tar -czvf /p2pool/logs.tar.gz /p2pool/output.log
|
tar -czvf /p2pool/logs.tar.gz /p2pool/output.log
|
||||||
|
|||||||
21
scripts/compiler_tests/gcc/test2.sh
Executable file
21
scripts/compiler_tests/gcc/test2.sh
Executable file
@@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd /p2pool
|
||||||
|
mkdir build && cd build
|
||||||
|
|
||||||
|
cmake .. -DCMAKE_BUILD_TYPE=Release $COMPILER 1>> /p2pool/output.log 2>&1
|
||||||
|
make -j$(nproc) p2pool 1>> /p2pool/output.log 2>&1
|
||||||
|
|
||||||
|
./p2pool --test 1>> /p2pool/output.log 2>&1
|
||||||
|
|
||||||
|
make -j$(nproc) randomx-tests 1>> /p2pool/output.log 2>&1
|
||||||
|
external/src/RandomX/randomx-tests 1>> /p2pool/output.log 2>&1
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
./p2pool_tests 1>> /p2pool/output.log 2>&1
|
||||||
Reference in New Issue
Block a user