diff --git a/.github/ISSUE_TEMPLATE/checklist-for-release.md b/.github/ISSUE_TEMPLATE/checklist-for-release.md index 45b3b6642..8fcd9c267 100644 --- a/.github/ISSUE_TEMPLATE/checklist-for-release.md +++ b/.github/ISSUE_TEMPLATE/checklist-for-release.md @@ -22,9 +22,11 @@ assignees: doegox, iceman1001 # OS compilation and tests ```bash -make clean && make -j PLATFORM=PM3GENERIC && tools/pm3_tests.sh -make clean && make -j PLATFORM=PM3RDV4 && tools/pm3_tests.sh -make clean && make -j PLATFORM=PM3RDV4 PLATFORM_EXTRAS=BTADDON && tools/pm3_tests.sh +#!/usr/bin/env bash + +make clean && make -j PLATFORM=PM3GENERIC && tools/pm3_tests.sh --long +make clean && make -j PLATFORM=PM3RDV4 && tools/pm3_tests.sh --long +make clean && make -j PLATFORM=PM3RDV4 PLATFORM_EXTRAS=BTADDON && tools/pm3_tests.sh --long sudo make install; pushd /tmp; proxmark3 -c 'data load -f lf_EM4x05.pm3;lf search -1'; popd; sudo make uninstall ( cd client; rm -rf build; mkdir build;cd build;cmake .. && make -j PLATFORM=PM3GENERIC && PM3BIN=./proxmark3 ../../tools/pm3_tests.sh client )