mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-06 16:27:22 +08:00
Fix build for linux
And move to xenial
This commit is contained in:
parent
2bd1be9aba
commit
6e1bd28aac
1 changed files with 3 additions and 9 deletions
12
.travis.yml
12
.travis.yml
|
@ -1,22 +1,16 @@
|
||||||
# Travis-CI Build for RfidResearchGroup/Proxmark3
|
# Travis-CI Build for RfidResearchGroup/Proxmark3
|
||||||
language: c
|
language: c
|
||||||
|
|
||||||
#default linux build env is: Ubuntu 14.04 trusty
|
#default linux build env is: xenial
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
|
|
||||||
# Test on Linux and MacOS
|
# Test on Linux and MacOS
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# - os: osx
|
|
||||||
# osx_image: xcode7.3 # OS X 10.11
|
|
||||||
# - os: osx
|
|
||||||
# osx_image: xcode8.3 # OS X 10.12
|
|
||||||
# - os: osx
|
|
||||||
# osx_image: xcode9 # OS X 10.13
|
|
||||||
- os: osx
|
- os: osx
|
||||||
osx_image: xcode9.1 # OS X 10.13.1
|
osx_image: xcode9.1 # OS X 10.13.1
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: xenial
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
@ -25,7 +19,7 @@ before_install:
|
||||||
## Note: all dependencies on MacOS should be resolved by the brew install command
|
## Note: all dependencies on MacOS should be resolved by the brew install command
|
||||||
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
sudo apt-get update -qq;
|
sudo apt-get update -qq;
|
||||||
sudo apt-get install -y gcc-arm-none-eabi;
|
sudo apt-get install -y gcc-arm-none-eabi libnewlib-arm-none-eabi libnewlib-dev binutils-arm-none-eabi;
|
||||||
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
brew update;
|
brew update;
|
||||||
brew tap RfidResearchGroup/proxmark3;
|
brew tap RfidResearchGroup/proxmark3;
|
||||||
|
|
Loading…
Reference in a new issue