From 71c5ae1e1e66bb459ffc87c910f6f0ee69e75274 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Sun, 18 Aug 2019 23:35:14 +0200 Subject: [PATCH] make travis great again (yml parsing failure) --- .travis.yml | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index a1c5a6866..334b8c890 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,30 +36,22 @@ addons: taps: RfidResearchGroup/proxmark3 install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then + if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew info proxmark3; - brew options proxmark3; - brew install --HEAD proxmark3; - elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then + brew options proxmark3; + brew install --verbose --HEAD proxmark3; + elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make clean; make all V=1; fi before_script: - chmod +x pm3test.sh - -script: + +script: ## start and run a test script 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 + elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./pm3test.sh; fi