mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-12-24 21:01:23 -08:00
c85805b8a2
* drop checks for MacOS 10.11 and 10.12 * add checks for Ubuntu 16.04 and 18.04 * add libnewlib-arm-none-eabi as prerequisite on Ubuntu
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
# Travis-CI config
|
|
# variable REPOSITORY_EP must be filled with repository name. as sample: "merlokk/proxmark3"
|
|
|
|
language: c
|
|
|
|
compiler: gcc
|
|
|
|
# Test on Linux and MacOS
|
|
jobs:
|
|
include:
|
|
- os: osx
|
|
osx_image: xcode9.4 # OS X 10.13
|
|
- os: osx
|
|
osx_image: xcode10 # OS X 10.13
|
|
- os: osx
|
|
osx_image: xcode11 # OS X 10.14
|
|
- os: linux
|
|
dist: trusty # Ubuntu 14.04
|
|
- os: linux
|
|
dist: xenial # Ubuntu 16.04
|
|
- os: linux
|
|
dist: bionic # Ubuntu 18.04
|
|
|
|
git:
|
|
depth: false
|
|
|
|
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 libnewlib-arm-none-eabi libpcsclite-dev;
|
|
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
brew update;
|
|
if [[ "$REPOSITORY_EP" == "" ]]; then
|
|
brew tap --full proxmark/proxmark3;
|
|
else
|
|
brew tap --full "$REPOSITORY_EP" --env=std;
|
|
fi
|
|
fi
|
|
|
|
install:
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
brew info proxmark3;
|
|
brew install -v --HEAD proxmark3;
|
|
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
make all;
|
|
fi
|
|
|
|
before_script:
|
|
|
|
script:
|
|
## for the time being we are satisfied if it can be build and hf mf hardnested runs
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
proxmark3 /dev/notexists travis_test_commands.scr ;
|
|
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
./client/proxmark3 /dev/notexists travis_test_commands.scr ;
|
|
fi
|