X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a36b278fadd47997b4d8e69dfeb4a126aa1932ee..03439be30ff87187899944775a1c9aa3954baf72:/.travis.yml diff --git a/.travis.yml b/.travis.yml index ecff0810..f5fed7a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,11 +10,11 @@ matrix: - os: osx osx_image: xcode7.3 # OS X 10.11 - os: osx - osx_image: xcode8 # OS X 10.11 + osx_image: xcode8.3 # OS X 10.12 - os: osx - osx_image: xcode8.1 # OS X 10.12 + osx_image: xcode9.4 # OS X 10.13 - os: osx - osx_image: xcode8.3 # OS X 10.12 + osx_image: xcode10 # OS X 10.13 - os: linux dist: trusty sudo: required @@ -23,18 +23,22 @@ before_install: ## Install ARM toolchain on Linux. ## add our homebrew tap for MacOS ## Note: all dependencies on MacOS should be resolved by the brew install command + echo $REPOSITORY_EP; if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -qq; sudo apt-get install -y gcc-arm-none-eabi; elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; - brew tap "$REPOSITORY_EP"; + if [[ "$REPOSITORY_EP" == "" ]]; then + brew tap proxmark/proxmark3; + else + brew tap "$REPOSITORY_EP" --env=std; + fi fi install: if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew info proxmark3; - brew options proxmark3; brew install -v --HEAD proxmark3; elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make all;