]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - .travis.yml
chg again...
[proxmark3-svn] / .travis.yml
... / ...
CommitLineData
1# Travis-CI Build for IcemanFork/Proxmark3
2language: c
3
4#default linux build env is: Ubuntu 14.04 trusty
5dist: trusty
6sudo: required
7
8#install:
9compiler: gcc
10
11# multi platform build test
12# build matrix,
13# LINUX : Using trusty beta build environment, based on Ubuntu 14.04
14# MAC OS:
15matrix:
16 include:
17 - os: osx
18 osx_image: xcode7.3
19 allow_failures:
20 - os: osx
21
22# MAC OS - dependencies?
23#before_install:
24# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
25# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew tap iceman1001/proxmark3; fi
26
27## Install mainline ARM toolchain. gcc-arm-none-eabi is available
28## in Ubuntu >= 14.04, but this external PPA is needed for 12.04.
29before_script:
30 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
31 - sudo apt-add-repository 'deb http://archive.ubuntu.com/ubuntu trusty main universe multiverse restricted';
32 - sudo apt-get update -qq;
33 - sudo apt-get install -y gcc-arm-none-eabi;
34 - git fetch --all
35 - elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
36 - brew update;
37 - brew tap iceman1001/proxmark3;
38 - brew install proxmark3;
39 fi
40#make command
41script: "make all"
Impressum, Datenschutz