mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
add check arm-none-eabi-gcc and unify install step for linux and macos
This commit is contained in:
parent
9ae27cd73c
commit
9a21bf8b2d
1 changed files with 6 additions and 6 deletions
12
.travis.yml
12
.travis.yml
|
@ -45,13 +45,13 @@ addons:
|
|||
taps: RfidResearchGroup/proxmark3
|
||||
|
||||
install:
|
||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||
make clean;
|
||||
make all V=1 "$MAKE_PARAMS";
|
||||
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||
make clean;
|
||||
make all V=1 "$MAKE_PARAMS";
|
||||
if ! arm-none-eabi-gccx -v; then
|
||||
echo "arm-none-eabi-gcc [ERROR]";
|
||||
travis_terminate 1;
|
||||
fi
|
||||
|
||||
make clean;
|
||||
make all V=1 "$MAKE_PARAMS";
|
||||
|
||||
script:
|
||||
## start and run a test script
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue