This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bb0f05
commit 4987f76
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
language: c | ||
dist: bionic | ||
|
||
env: | ||
global: | ||
- BOLOS_ENV=$TRAVIS_BUILD_DIR/bolos-env | ||
|
||
before_install: | ||
- sudo apt-get update | ||
- sudo apt-get install -y gcc-multilib g++-multilib python3-pip | ||
- sudo apt-get install -y libudev-dev libusb-1.0-0-dev pkg-config | ||
- sudo mkdir -p $BOLOS_ENV | ||
- wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/5_3-2016q1/gccarmnoneeabi532016q120160330linuxtar.bz2 | ||
- sudo tar xf gccarmnoneeabi532016q120160330linuxtar.bz2 -C $BOLOS_ENV | ||
- wget http://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz | ||
- sudo tar xf clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz -C $BOLOS_ENV | ||
- sudo mv -f $BOLOS_ENV/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04 $BOLOS_ENV/clang-arm-fropi | ||
- sudo apt-get install python3-setuptools | ||
- python3 -m pip install ledgerblue | ||
|
||
script: make |