mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-01 21:08:18 +08:00
make travis great again (yml parsing failure)
This commit is contained in:
parent
b98cb5d47c
commit
71c5ae1e1e
1 changed files with 7 additions and 15 deletions
22
.travis.yml
22
.travis.yml
|
@ -36,30 +36,22 @@ addons:
|
||||||
taps: RfidResearchGroup/proxmark3
|
taps: RfidResearchGroup/proxmark3
|
||||||
|
|
||||||
install:
|
install:
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
brew info proxmark3;
|
brew info proxmark3;
|
||||||
brew options proxmark3;
|
brew options proxmark3;
|
||||||
brew install --HEAD proxmark3;
|
brew install --verbose --HEAD proxmark3;
|
||||||
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
make clean;
|
make clean;
|
||||||
make all V=1;
|
make all V=1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- chmod +x pm3test.sh
|
- chmod +x pm3test.sh
|
||||||
|
|
||||||
script:
|
script:
|
||||||
## start and run a test script
|
## start and run a test script
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
proxmark3 -h ;
|
proxmark3 -h ;
|
||||||
# cd /Users/travis/Library/Caches/Homebrew/proxmark3--git;
|
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
# chmod +x pm3test.sh;
|
|
||||||
# pwd;
|
|
||||||
# ls -la;
|
|
||||||
# cd client;
|
|
||||||
# ls-la;
|
|
||||||
# cd ..;
|
|
||||||
# ./pm3test.sh;
|
|
||||||
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
||||||
./pm3test.sh;
|
./pm3test.sh;
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue