From 06d653e330f21ac9de908f4d2b52a712b20ee2c1 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 28 Oct 2022 22:00:03 +0200 Subject: [PATCH] skip install testing --- docker/archlinux/run_tests.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docker/archlinux/run_tests.sh b/docker/archlinux/run_tests.sh index 8d4a56776..9c2b4daeb 100755 --- a/docker/archlinux/run_tests.sh +++ b/docker/archlinux/run_tests.sh @@ -40,9 +40,6 @@ pacman -Ss '^gcc$' # sudo pacman -S testing/gcc # sudo pacman -S gcc -sudo pacman --noconfirm -S python-pip -python3 -m pip install ansicolors sslcrypto - # replace egrep to silence warning sed -i 's/egrep/grep -E/g' tools/pm3_tests.sh @@ -50,9 +47,10 @@ sed -i 's/egrep/grep -E/g' tools/pm3_tests.sh make clean; make -j PLATFORM=PM3GENERIC; tools/pm3_tests.sh --long || exit 1 make clean; make -j PLATFORM=PM3RDV4; tools/pm3_tests.sh --long || exit 1 make clean; make -j PLATFORM=PM3RDV4 PLATFORM_EXTRAS=BTADDON; tools/pm3_tests.sh --long || exit 1 +# sudo make install; pushd /tmp; proxmark3 -c 'data load -f lf_EM4x05.pm3;lf search -1'; popd; sudo make uninstall # cmake client build test -( cd client; rm -rf build; mkdir build;cd build;cmake ..;make -j ); PM3BIN=./client/build/proxmark3 tools/pm3_tests.sh client --long || exit 1 +#( cd client; rm -rf build; mkdir build;cd build;cmake ..;make -j ); PM3BIN=./client/build/proxmark3 tools/pm3_tests.sh client --long || exit 1 ( cd client; rm -rf build; mkdir build;cd build;cmake ..;make -j PLATFORM=PM3GENERIC ); PM3BIN=./client/build/proxmark3 tools/pm3_tests.sh client --long || exit 1 ( cd client; rm -rf build; mkdir build;cd build;cmake ..;make -j PLATFORM=PM3RDV4 ); PM3BIN=./client/build/proxmark3 tools/pm3_tests.sh client --long || exit 1 ( cd client; rm -rf build; mkdir build;cd build;cmake ..;make -j PLATFORM=PM3RDV4 PLATFORM_EXTRAS=BTADDON ); PM3BIN=./client/build/proxmark3 tools/pm3_tests.sh client || exit 1