]>
Commit | Line | Data |
---|---|---|
daa93f2a | 1 | # Travis-CI Build for Iceman Fork / Proxmark3 |
2 | language: c | |
30207336 | 3 | |
4641b284 | 4 | # Using trusty beta build environment, based on Ubuntu 14.04 |
5 | sudo: required | |
6 | dist: trusty | |
7 | ||
daa93f2a | 8 | #install: |
9 | compiler: gcc | |
10 | ||
30207336 | 11 | ## Install mainline ARM toolchain. gcc-arm-none-eabi is available |
12 | ## in Ubuntu >= 14.04, but this external PPA is needed for 12.04. | |
13 | before_script: | |
14 | - sudo apt-add-repository 'deb http://archive.ubuntu.com/ubuntu trusty main universe multiverse restricted' | |
15 | - sudo apt-get update -qq | |
16 | - sudo apt-get install -y gcc-arm-none-eabi | |
74d3f41b | 17 | - git fetch --all |
30207336 | 18 | |
0608673a | 19 | #make command |
0608673a | 20 | script: "make all" |