mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 05:07:03 +08:00
hopefully fixes travis for OSX
This commit is contained in:
parent
ae57feeee6
commit
2804a7dbad
1 changed files with 8 additions and 1 deletions
|
@ -36,7 +36,6 @@ addons:
|
|||
- libsndfile1-dev
|
||||
homebrew:
|
||||
packages:
|
||||
- python3
|
||||
- readline
|
||||
- libsndfile
|
||||
- qt5
|
||||
|
@ -45,6 +44,14 @@ addons:
|
|||
# update trick to fix https://travis-ci.community/t/macos-build-fails-because-of-homebrew-bundle-unknown-command/7296/14
|
||||
update: true
|
||||
|
||||
before_install:
|
||||
# bug?
|
||||
# homebrew update replaced python2.7 by python3.7 but
|
||||
# python3 link failed while python@2 still present, so let's do it again:
|
||||
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
||||
brew link --overwrite python;
|
||||
fi
|
||||
|
||||
install:
|
||||
if ! arm-none-eabi-gcc -v; then
|
||||
echo "arm-none-eabi-gcc [ERROR]";
|
||||
|
|
Loading…
Reference in a new issue