-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (28 loc) · 906 Bytes
/
Copy path.travis.yml
File metadata and controls
33 lines (28 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Continuous Integration (CI) is the practice, in software
# engineering, of merging all developer working copies with a shared mainline
# several times a day < http://docs.platformio.org/en/stable/ci/index.html >
#
# Documentation:
#
# * Travis CI Embedded Builds with PlatformIO
# < https://docs.travis-ci.com/user/integration/platformio/ >
#
# * PlatformIO integration with Travis CI
# < http://docs.platformio.org/en/stable/ci/travis.html >
#
# * User Guide for `platformio ci` command
# < http://docs.platformio.org/en/stable/userguide/cmd_ci.html >
language: python
python:
- "3.7"
sudo: false
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
- echo "upgrade platformio version to 4.1 (dev) because of an error in 4.0"
- platformio upgrade --dev
script:
- echo "Run desktop (native) tests on Travis.CI Linux machine"
- platformio test -e native