Skip to content

Commit 382dc71

Browse files
committed
Create .travis.yml
1 parent 3a487bf commit 382dc71

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.travis.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
sudo: false
2+
language: python
3+
os:
4+
- linux
5+
6+
git:
7+
depth: false
8+
9+
addons:
10+
apt:
11+
packages:
12+
- git
13+
- wget
14+
- curl
15+
- libssl-dev
16+
- libncurses-dev
17+
- flex
18+
- bison
19+
- gperf
20+
- python
21+
- python-pip
22+
- python-setuptools
23+
- python-serial
24+
- python-click
25+
- python-cryptography
26+
- python-future
27+
- python-pyparsing
28+
- python-pyelftools
29+
- cmake
30+
- ninja-build
31+
- ccache
32+
33+
stages:
34+
- build
35+
36+
jobs:
37+
include:
38+
39+
- name: "Build Arduino Libs"
40+
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
41+
stage: build
42+
script: bash $TRAVIS_BUILD_DIR/build.sh

0 commit comments

Comments
 (0)