mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-23 23:55:15 +08:00
skip install testing
This commit is contained in:
parent
038407a6ab
commit
06d653e330
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue