mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-18 22:20:45 +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
|
- libsndfile1-dev
|
||||||
homebrew:
|
homebrew:
|
||||||
packages:
|
packages:
|
||||||
- python3
|
|
||||||
- readline
|
- readline
|
||||||
- libsndfile
|
- libsndfile
|
||||||
- qt5
|
- 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 trick to fix https://travis-ci.community/t/macos-build-fails-because-of-homebrew-bundle-unknown-command/7296/14
|
||||||
update: true
|
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:
|
install:
|
||||||
if ! arm-none-eabi-gcc -v; then
|
if ! arm-none-eabi-gcc -v; then
|
||||||
echo "arm-none-eabi-gcc [ERROR]";
|
echo "arm-none-eabi-gcc [ERROR]";
|
||||||
|
|
Loading…
Reference in a new issue