retry for hardnested
added `make all v=1` for linux
This commit is contained in:
Oleg Moiseenko
2019-08-18 20:56:38 +03:00
committed by GitHub
parent 00cc43ec7e
commit 6647c407af
2 changed files with 29 additions and 9 deletions

View File

@@ -42,7 +42,7 @@ install:
brew install --HEAD proxmark3;
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
make clean;
make all;
make all V=1;
fi
before_script:
@@ -50,8 +50,16 @@ before_script:
script:
## start and run a test script
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
proxmark3 -h ;
# cd /Users/travis/Library/Caches/Homebrew/proxmark3--git;
# chmod +x pm3test.sh;
# pwd;
# ls -la;
# cd client;
# ls-la;
# cd ..;
# ./pm3test.sh;
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
./pm3test.sh;
fi