-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (29 loc) · 876 Bytes
/
.travis.yml
File metadata and controls
36 lines (29 loc) · 876 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
34
35
# ============================================================================
# Travis CI Configuration
# M5Stack IMU Data Recording System
# ============================================================================
#
# Continuous Integration (CI) configuration for automated building and testing
# Documentation: https://docs.travis-ci.com/user/integration/platformio/
# ============================================================================
language: python
python:
- "3.9"
sudo: false
# Cache PlatformIO packages for faster builds
cache:
directories:
- "~/.platformio"
# Install PlatformIO
install:
- pip install -U platformio
- platformio update
- platformio upgrade
# Build the project
script:
- platformio run
# Notifications (optional - uncomment to enable)
# notifications:
# email:
# on_success: change
# on_failure: always