summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorChris Johnson <chrisjohnsonmail@gmail.com>2018-12-05 03:44:39 (GMT)
committerGitHub <noreply@github.com>2018-12-05 03:44:39 (GMT)
commit2c8ab3f18b2ed9fdc1742ec60b6e34248d04efe3 (patch)
treead8950e1471e577aa76519049ca1f269a0e1f4f3 /.travis.yml
parentfe14e3030737509c2b9f9adad80ff56f80e988a2 (diff)
downloadgoogletest-2c8ab3f18b2ed9fdc1742ec60b6e34248d04efe3.zip
googletest-2c8ab3f18b2ed9fdc1742ec60b6e34248d04efe3.tar.gz
googletest-2c8ab3f18b2ed9fdc1742ec60b6e34248d04efe3.tar.bz2
feat: Add initial support for PlatformIO and Arduino
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 2b0ac21..74e1b8f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,6 +11,12 @@ language: cpp
matrix:
include:
- os: linux
+ dist: trusty
+ sudo: required
+ group: deprecated-2017Q3
+ install: ./ci/install-platformio.sh
+ script: ./ci/build-platformio.sh
+ - os: linux
compiler: gcc
sudo : true
install: ./ci/install-linux.sh && ./ci/log-config.sh
@@ -44,6 +50,9 @@ matrix:
env: BUILD_TYPE=Release VERBOSE=1 CXX_FLAGS=-std=c++11
if: type != pull_request
+before_install:
+ - chmod -R +x ./ci/*.sh
+
# These are the install and build (script) phases for the most common entries in the matrix. They could be included
# in each entry in the matrix, but that is just repetitive.
install: