proxmark3/.travis.yml

39 lines
780 B
YAML
Raw Normal View History

# Travis-CI Build for RfidResearchGroup/Proxmark3
2016-01-09 05:14:22 +08:00
language: c
2019-07-17 20:50:59 +08:00
#default linux build env is: xenial
compiler: gcc
# Test on Linux and MacOS
matrix:
include:
- os: osx
2019-07-25 20:41:52 +08:00
osx_image: xcode11
2017-06-09 20:43:20 +08:00
- os: linux
2019-07-17 20:50:59 +08:00
dist: xenial
2017-06-09 20:43:20 +08:00
sudo: required
2019-07-25 20:41:52 +08:00
addons:
apt:
packages:
- gcc-arm-none-eabi
- libnewlib-dev
homebrew:
taps: RfidResearchGroup/proxmark3
install:
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew info proxmark3;
brew options proxmark3;
brew install --HEAD proxmark3;
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
make all;
fi
2017-06-09 20:43:20 +08:00
script:
## start and run a test script
2017-09-18 03:50:20 +08:00
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
proxmark3 -h ;
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
./client/proxmark3 -h ;
fi