Skip to content

Commit 463f7d1

Browse files
committed
pio travis
1 parent 57fc841 commit 463f7d1

File tree

2 files changed

+30
-27
lines changed

2 files changed

+30
-27
lines changed

.travis.yml

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
1-
dist: trusty
1+
---
22
sudo: false
3+
dist: trusty
34
group: beta
4-
55
language: cpp
66

7-
matrix:
8-
include:
9-
- compiler: gcc
10-
addons:
11-
apt:
12-
sources:
13-
- ubuntu-toolchain-r-test
14-
packages:
15-
- git
16-
- g++-5
17-
env: COMPILER=g++-5
7+
install:
8+
- curl -fsSL https://bootstrap.pypa.io/get-pip.py | python
9+
- python -m pip install platformio
1810

19-
- compiler: clang
20-
addons:
21-
apt:
22-
sources:
23-
- ubuntu-toolchain-r-test
24-
- llvm-toolchain-precise-3.6
25-
packages:
26-
- git
27-
- clang-3.6
28-
env: COMPILER=clang++-3.6
11+
matrix:
12+
include:
13+
-
14+
compiler: gcc
15+
env: COMPILER=g++-5
16+
addons:
17+
apt:
18+
packages:
19+
- git
20+
- g++-5
21+
sources:
22+
- ubuntu-toolchain-r-test
23+
-
24+
compiler: clang
25+
env: COMPILER=clang++-3.6
26+
addons:
27+
apt:
28+
packages:
29+
- git
30+
- clang-3.6
31+
sources:
32+
- ubuntu-toolchain-r-test
33+
- llvm-toolchain-precise-3.6
2934

3035
script:
31-
- git --version
32-
- cmake --version
33-
- make --version
34-
- make build test
36+
- "make pio-test"

src/arduino/Arduino.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#ifndef Arduino_h
2121
#define Arduino_h
2222

23+
#include <stdint.h>
2324
#include <stdlib.h>
2425
#include <stdbool.h>
2526
#include <string.h>

0 commit comments

Comments
 (0)