2 # variable REPOSITORY_EP must be filled with repository name. as sample: "merlokk/proxmark3"
8 # Test on Linux and MacOS
12 osx_image: xcode9.4 # OS X 10.13
14 osx_image: xcode10 # OS X 10.13
16 osx_image: xcode11 # OS X 10.14
18 dist: trusty # Ubuntu 14.04
20 dist: xenial # Ubuntu 16.04
22 dist: bionic # Ubuntu 18.04
28 ## Install ARM toolchain on Linux.
29 ## add our homebrew tap for MacOS
30 ## Note: all dependencies on MacOS should be resolved by the brew install command
32 if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
33 sudo apt-get update -qq;
34 sudo apt-get install -y gcc-arm-none-eabi libnewlib-arm-none-eabi libpcsclite-dev;
35 elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
37 if [[ "$REPOSITORY_EP" == "" ]]; then
38 brew tap --full proxmark/proxmark3;
40 brew tap --full "$REPOSITORY_EP" --env=std;
45 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
47 brew install -v --HEAD proxmark3;
48 elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
55 ## for the time being we are satisfied if it can be build and hf mf hardnested runs
56 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
57 proxmark3 /dev/notexists travis_test_commands.scr ;
58 elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
59 ./client/proxmark3 /dev/notexists travis_test_commands.scr ;